正常情况下style属性中的级别是最高的,但是2113在样式表中可5261以用”声明(important)“加强该属性的级别,如:
<div class="demo" style="width: 100px;height: 100px;background: red;"></div>
.demo {
background: blue;
}
上面的写法div的背景色显示为4102红色,但如果我们这样写:
.demo {
background: blue!important;
}
div的背景就变为蓝色了。1653