karrykai 发表于 2013-2-8 01:06:26

可同时区分IE8、IE7、IE6、Firefox3、Firefox2的CSS hacks

<div class="postEntry">可同时区分IE8、IE7、IE6、Firefox3、Firefox2的CSS hacks:
<div class="code"><div class="hl-main">.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 */
}
页: [1]
查看完整版本: 可同时区分IE8、IE7、IE6、Firefox3、Firefox2的CSS hacks