IE6/7 CSS Class Overriding
- by Joda Maki
I have a css file like:
#SomeTable.hideAll .hide { display: none; }
#SomeTable.showXYZ .show { display: block }
When I add the class showCol to a td, the display overrides to block in chrome, FF, and IE8. But in IE6/7, the display stays none like it is not being overridden. Is there something odd you have to do in old IE's to do a css override like this? I suspect it has something to do with it either not being possible, or I just don't understand rules for determining an override.