最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

!important

运维笔记admin24浏览0评论

!important

!important

!important

发布时间:2018年01月15日 21:06:27

!important的css定义拥有最高的优先级,既相当于让其样式放在离元素最近的地方(最下面)。

1.对IE7-10和firefox、chrome均有效
2.但其中IE6只能这样写才有效(不支持同一定义中的!important):
eg:

a{color:blue !important;/*color:blue;(无效)*/color:red;/*color:red;(有效)*/
}.testClass{color:blue !important;/*有效*/
}
.testClass{color:red;/*无效*/
}

.testClass:IE6显示为蓝色,只支持重定义中的!important

3.可用来区分其他浏览器和IE6
eg:

<div style="color:blue !important;color:red;">

firefox等高端的浏览器显示文字为蓝色,而IE6中则显示为红色文字。
在IE6眼中,有无加!important无差别,则哪个样式在后则显示哪个。

发布评论

评论列表(0)

  1. 暂无评论