i didn´t know how to apply css property background-size in IE8. i found the -ms-filter is solution but how to apply exactly this code:
background-size: 100% auto;
Thanks for any response.
This Code below still not work, can you explain me why it's not working, or give me good example. Really thanks:
html{
width: 100%;
height: 100%;
background-image: url('../img/background.jpg');
background-position: left top;
-ms-background-size: 100% auto;
background-size: 100% auto;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/background.jpg',sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../img/background.jpg',sizingMethod='scale')";
}