Skip to content

CSS hacks for IE6, IE7

  1. #someElement {
  2. ย  background: red; /* modern browsers */
  3. ย  *background: green; /* IE 7 and below */
  4. ย  _background: yellow; /* IE6 exclusively */
  5. }