次のように定義された 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 スタイルをオーバーライドするにはどうすればよいですか?