pasckr 发表于 2016-5-9 14:18:13

IE6,IE7等其它IE和firfox等标准浏览器css hack简单兼容方




              <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;>
<html lang=&quot;ru&quot;>
<head>
<title></title>
<style type=&quot;text/css&quot;>
.test
{
color:#FF0000;/*Firefox以及其他浏览器看*/
#color:#0000FF;/*IE7IE8、IE9*/
_color:#FFFF00;/*IE6以及更老的版本*/
}
</style>
</head>
<body>
<p class=&quot;test&quot;>
color:#FF0000;/*Firefox以及其他浏览器看*/<br />
#color:#0000FF;/*IE7IE8、IE9*/<br />
_color:#FFFF00;/*IE6以及更老的版本*/
</p>
</body>
</html>
页: [1]
查看完整版本: IE6,IE7等其它IE和firfox等标准浏览器css hack简单兼容方