我有一个定义如下的 div:
<div style="background-color: rgb(217, 240, 211) ! important; color: rgb(0, 102, 2) ! important;" class="div_box">... ...
</div>
因为 div 当前使用的是内联样式(我讨厌这个!),所以我需要覆盖背景颜色和颜色。
我努力了:
.div_box[style] {
background-color: rgb(216, 219, 215) ! important;
color: rgb(94, 94, 94) ! important;
}
但不起作用。还尝试了 .div_box { ... } 但仍然无法正常工作。
所以我的问题是,如何在不手动更改内联样式的情况下覆盖上述 div 样式?