background-size property not working in WordPress
-
I recently created a WordPress site and used the CSS3 ‘background-size’ property to stretch the background image and maintain the aspect ratio.
Here is the code I used…
html {
background:url(images/WebsiteImage01.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’images/WebsiteImage01.jpg’, sizingMethod=’scale’);
-ms-filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’images/WebsiteImage01.jpg’, sizingMethod=’scale’);}
However if you view the site in safari the image doesn’t show up at all. The odd thing about this though is that if you view a page such as
this onewhich uses the same markup, the page displays perfectly.Anyone have an idea about why this is happening?
- The topic ‘background-size property not working in WordPress’ is closed to new replies.