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

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

.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:

.test {
    
color: #000 ; / * Firefox * /
    
color: /*\**/ #00f \ 9 ; / * IE8 * /
    
* color: #f00 ; / * IE7 * /
    _
color: #0f0 ; / * IE6 * /
}

关于IE8的hacks:

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

Copyright playgoogle.com© 2008

继续阅读《可同时区分IE8、IE7、IE6、Firefox3、Firefox2的CSS hacks》的全文内容...

相关文章:

你可能感兴趣的:(css,IE,webkit,firefox)