A Simple CSS hack

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 */
}

No Comments