IE6 Multiple Background declarations


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. When you have multiple declarations for a single background element IE6 ignores the background.
  2.  
  3. For instance, this does not work:
  4. .element0,
  5. .element1,
  6. .element2 {background-image: none;}
  7.  
  8. This does work:
  9. .element0 {background-image: none;}
  10. .element1 {background-image: none;}
  11. .element2 {background-image: none;}

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.