谈谈CSS选择器优先级和!important权重
web前端开发
共 1221字,需浏览 3分钟
·
2020-11-19 03:41
来源 | https://www.html.cn/web/css/19897.html
CSS中的选择器优先级与!important权重
.class选择器要高于标签选择器。
#id选择器要高于.class选择器。
标签选择器是优先级最低的选择器。
!important的属性它的权重值优先级最高的,大于所有的选择器。
标签选择器和.class选择器
让我们进入标签选择器和.class选择器谁的优先级高实践,实践内容如:将HTML页面中的h2标签设置文本颜色。
代码块
优先级
h2{
color: red; /*红色*/
}
.box{
color: springgreen; /*绿色*/
}
微笑是最初的信仰
最终效果图:
.class选择器和id选择器
让我们进入.class选择器和id选择器谁的优先级高实践,实践内容如:将HTML页面中的h2标签设置文本颜色。
代码块
优先级
h2{
color: red; /*红色*/
}
.box{
color: springgreen; /*绿色*/
}
#box{
color:blue; /*蓝色*/
}
微笑是最初的信仰
最终效果图:
!important权重使用
!important权重使用格式如下:
color: red !important; /*红色*/
!important使用
h2{
color: red !important; /*红色*/
}
.box{
color: springgreen; /*绿色*/
}
#box{
color:blue; /*蓝色*/
}
微笑是最初的信仰
总结
评论