Background-size Not Working In Ie
I have checked the other post. I am having some problem in using css3 property background-size in IE. .topBar { width:100%; background:url(../siteImages/top_bar.png) repea
Solution 1:
background-size
is a CSS3 property which isn't supported on IE8 and below.
You can also try this:
background:url(../siteImages/top_bar.png) 00 / auto 43px repeat-x fixed;
Solution 2:
try to add vendor
/* Vendor Prefixes used with the Cover Value*/
-webkit-background-size: auto 43px;
-moz-background-size: auto 43px;
-o-background-size: auto 43px;
background-size: auto 43px;
also check this
IE8 fix for background-size property? Retina Image
and this
https://developer.mozilla.org/en-US/docs/Web/CSS/background-size
Solution 3:
background-size is a CSS3 property which isn't supported before IE9.
However, there is a topic which gives possible solution: How do I make background-size work in IE?
Post a Comment for "Background-size Not Working In Ie"