针对IE6 7 8当独写样式

IE8的格式:

.foot{padding:12px 10px9;} //在后面加9

IE7的格式:

.foot{*padding:12px 10px9;} //在前面加*

IE6的格式:

.foot{_padding:12px 10px9;} //在前面加_

或者:

或者
* html .foot{padding:12px 10px}  /* IE6 浏览器实行这句定义 */
*+html .foot{line-height: 23px; } /* IE7 浏览器实行这句定义*/

原文地址:https://www.cnblogs.com/happyty/p/4638118.html