Css trick make style rule only apply in ie6

Posted by: 
Dominique De Cooman

just put an underscore in front of your rule.

example

#footer {
  padding:10px;
  _padding:20px;
}

Ie6 will use the latter rule while all the other browsers will use the first. Great to solve ie6s problems with padding

Add new comment