采纳
:not(selector)选择器匹配非指定元素/选择器的每个元素。
:not(selector)
设置非 <p> 元素的所有元素的背景色:
<p>
:not(p) { background-color: #ff0000; }
在线运行