凌的博客

您现在的位置是: 首页 > 前端学习 > HTML+CSS > 

HTML+CSS

ie浏览器 hack写法

2016-09-19 HTML+CSS 904
#test{ color:red; /* 所有浏览器都支持 */ color:red !important;/* Firefox、IE7支持 */ _color:red; /* IE6支持 */ *color:red; /* IE6、IE7支持 */ *+color:red; /* IE7支持 */ color:red\\9; /* IE6、IE7、IE
#test{
color:red; /* 所有浏览器都支持 */ 
color:red !important;/* Firefox、IE7支持 */
_color:red; /* IE6支持 */
*color:red; /* IE6、IE7支持 */
*+color:red; /* IE7支持 */
color:red\9; /* IE6、IE7、IE8支持 */
color:red\0; /* IE8支持 */
}

文章评论

0条评论