Here is my HTML code snippet:
<div id="content_main"></div>
This is the accompanying CSS for styling the content main section:
#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;
}
I'm facing an issue with the 'background-size' property not working in Internet Explorer 8. I am unsure of how to resolve this problem and would appreciate any guidance or assistance. Thank you.