CSS优先级中还有一个最无敌的声明,就是!important。
在CSS样式表中,带有!important声明的样式优先使用,它的优先级会超越任何地方、任何方式的样式声明,包括行内style属性中声明的样式。
比如下面代码:
<style type="text/css">
#storage{
display: none !important;
}
</style>
CSS优先级中还有一个最无敌的声明,就是!important。
在CSS样式表中,带有!important声明的样式优先使用,它的优先级会超越任何地方、任何方式的样式声明,包括行内style属性中声明的样式。
比如下面代码:
<style type="text/css">
#storage{
display: none !important;
}
</style>