my html code
<div id="content_main"></div>
css
#content_main
{
width:1024px;
height:150px;
background:url('../images/Orange.jpg');
background-repeat:no-repeat;
background-size:1024px 150px;
-moz-background-size: 1024px 150px;
-o-background-size: 1024px 150px;
}
background-size is not working in IE8,How to fix this problem,I dont have any idea,Please help me.
IE8 does not support background-image options. You can use the caniuse.com website to see browser support matrices for various HTML5 features like
background-size. Alternatively, if IE8 support is required, you’ll need to use an<img>tag set behind your<div id="content_main">Follow @ahsan’s recommendation to check out this other similar question which contains some polyfill suggestions and an
ms-filterwork-around forbackground-sizein IE8