标签:
IE8的格式:
.foot{padding:12px 10px\9;} //在后面加\9
IE7的格式:
.foot{*padding:12px 10px\9;} //在前面加*
IE6的格式:
.foot{_padding:12px 10px\9;} //在前面加_
或者:
或者
* html .foot{padding:12px 10px} /* IE6 浏览器实行这句定义 */
*+html .foot{line-height: 23px; } /* IE7 浏览器实行这句定义*/
标签:
原文地址:http://www.cnblogs.com/happyty/p/4638118.html