Page is a not externally linkable
- Code, Content, and Presentation
-- CSS
---- background gradients and background images together


rainborick - 11:26 pm on Dec 13, 2012 (gmt 0)


Older versions of IE don't support multiple background images, so they ignore attempts to use them - which can cause those browsers to ignore previous valid settings. You need to use conditionals to override or supplement your CSS3 background settings, as in:

<!--[if lt IE 9]>
<style type="text/css">
#myDiv { background: url("image.png"); }
</style>
<![endif]-->


Thread source:: http://www.webmasterworld.com/css/4527942.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com