网页制作需要了解的IE8、IE7、IE6、Firefox3、Firefox2的CSS hacks

Kita ·
更新时间:2024-11-13
· 869 次阅读


代码如下:
.test{
color:/*\**/#00f\9; /* IE8 */
}
.test,
.test:-moz-any-link{
color:#f60; /* Firefox2 */
}
.test,
.test:default{
color:#000; /* Firefox3 */
*color:#f00; /* IE7 */
_color:#0f0; /* IE6 */
}

可同时区分IE8、IE7、IE6、Firefox的CSS hacks:

CSS代码

代码如下:
.test{
color:#000; /* Firefox */
color:/*\**/#00f\9; /* IE8 */
*color:#f00; /* IE7 */
_color:#0f0; /* IE6 */
}

关于IE8的hacks:

代码如下:
CSS代码
.test{
color:/*\**/#00f\9; /* IE8 only */
color:#00f\9; /* 适用于所有IE版本 */
}



IE8 IE7 IE6 firefox 网页制作 ie CSS

需要 登录 后方可回复, 如果你还没有账号请 注册新账号