Cool way to easily target a specific version of IE in CSS:
#someElement {
background: red; /* modern browsers */
*background: green; /* IE 7 and below */
_background: yellow; /* IE6 exclusively */
}
via NETTUTS
Cool way to easily target a specific version of IE in CSS:
#someElement {
background: red; /* modern browsers */
*background: green; /* IE 7 and below */
_background: yellow; /* IE6 exclusively */
}
via NETTUTS