/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
When you have multiple declarations for a single background element IE6 ignores the background. For instance, this does not work: .element0, .element1, .element2 {background-image: none;} This does work: .element0 {background-image: none;} .element1 {background-image: none;} .element2 {background-image: none;}