1. IE6、IE7、IE8兼容写法
_color: #ccc; /* _只ie6支持 */
*color: #ccc; /* *ie6/7支持*/
*+color: #ccc; /**+ie7支持 */
color: #ccc\0; /* \0 IE8支持 */
color: #ccc\9; /* \9 IE6/7/8支持 */
2.浏览器内核代表
-ms-transform:rotate(7deg); //-ms代表ie内核识别码
-moz-transform:rotate(7deg); //-moz-代表火狐内核识别码
-webkit-transform:rotate(7deg); //-webkit-代表谷歌内核识别码
-o-transform:rotate(7deg); //-o-代表opera欧朋内核识别码