学习!important用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学习!important用法相关的知识,希望对你有一定的参考价值。
- 通过在样式后面添加!important,可以提高css规则的重要度
- 举个栗子
- 代码如下
<style> .div1 { color: blue; } .div2 { color: blue !important; } .div3 { color: blue !important; } </style>
<h1 class="div1" style="color:red">aaa</h1> <h1 class="div2" style="color:red">bbb</h1> <h1 class="div3" style="color:red !important">ccc</h1>
- 运行结果如下
- 兼容性:所有主流浏览器均可识别!important
以上是关于学习!important用法的主要内容,如果未能解决你的问题,请参考以下文章