38 words
1 minute
A Simple CSS hack
2007-09-21

This following hack works for IE6 / IE7 / Firefox:

.some-class
{
color: #FF0000 !important; /* For firefox, safari and opera */
color: #00FF00; /* For ie6 */
}
*html .some-class
{
color: #0000FF; /* For ie7 */
}
A Simple CSS hack
https://dixin.github.io/posts/a-simple-css-hack/
Author
Dixin
Published at
2007-09-21
License
CC BY-NC-SA 4.0