How Do I Target IE7 or IE8 Using CSS Hacks? | Impressive Webs
I use the :not pseudo class in cases when I need different CSS for the older IE’s. It’s valid CSS3, and I think it’s quite readable for a browser hack. .element { /* for old browsers, overwritten below */ margin: 40px; } .element:not(#ie6or7) { /* for mod...