css IE8 兼容问题的汇总
发布时间:2016-12-27 来源:查字典编辑
摘要:#box{color:red;/*所有浏览器都支持*/color:red!important;/*Firefox、IE7支持*/_color...
#box{
color:red; /* 所有浏览器都支持 */
color:red !important;/* Firefox、IE7支持 */
_color:red; /* IE6支持 */
*color:red; /* IE6、IE7支持 */
*+color:red; /* IE7支持 */
color:red9; /* IE6、IE7、IE8支持 */
color:red; /* IE8支持 */
}