在以下情况下,如何使用: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
. 这就是为什么我不想稍后手动覆盖它们......