views:

134

answers:

1

I am receiving some strange begaviour 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.

+1  A: 

It doesn't work in IE6 because it doesn't support the * identifier. You will have to override the background for every element seperately.

Jouke van der Maas
As stated before i have a seperate stylesheet for print using the media="print".This is the issue that in IE6 some images are still shouwing up.
RyanP13
What do you mean 'as stated before'; it's not in your question.In that case it doesn't work because IE6 does not support the * identifier. I will edit my answer.
Jouke van der Maas