次の状況で、太字:not()
から除外するにはどうすればよいですか?div.note em
div#content em {
font-weight: bold;
}
/* I want to remove the following
in favor of the :not selector being applied to the above */
div#content div.note em {
font-weight: normal;
}
PS:これは簡略化された例です。実際には、div#content em
を除くすべてに適用したいスタイルがいくつかありますdiv.note em
。だから私は後でそれらをすべて手動で上書きしたくないのです...