背景色を常にカスケードすることはできません: http://jsfiddle.net/yHgTt/
<html>
<head>
<style>
td { background-color: blue; }
</style>
</head>
<body>
<div style="background-color: yellow">
yellow
<span>
and yellow too
</span>
</div>
<span style="background-color: yellow !important ">
yellow
<div>
not yellow but expecting to be
</div>
</span>
<table>
<thead>
</thead>
<tbody>
<tr style="background-color: yellow !important">
<td>
expecting to be yellow
</td>
</tr>
</tbody>
</table>
</body>
</html>
編集
ユースケースは、Chrome 拡張機能を使用してサードパーティ サイトの一部を強調表示することです。html を操作することはできますが、強調表示/注釈付けができるだけ簡単でエラーがないようにするために、これをまったく実行したくありません。