print CSS still showing some background images when printing
I am receiving some strange begaviou开发者_C百科r in IE6 when printing a page.
For some reason it is printing out parts of a CSS background image sprite.
I have overridden all background-image declarations with:
* {background-image:none !important;}
But to no avail. I didn't think background images were supported by default anyways so this is a new one on me.
It doesn't work in IE6 because it doesn't support the * identifier. You will have to override the background for every element seperately.
精彩评论