在CSS的兼容时往往不同的浏览器会有自己的识别专用符,这里找了几个常用的个浏览器的专用识别方法。
-khtml如:Safari浏览器
-moz如Firefox浏览器
-webkit如谷歌浏览器
-o如Opera浏览器
p {
color: red; /* 所有浏览器都支持 */
color: blue !important; /* Firefox、IE7支持 IE8支持*/
*color: green; /* IE6、IE7支持 */
*+color: pink; /* IE7支持 */
_color: gray; /* IE6支持 */
}