:not() 选择器可用于排除特定条件的元素,其语法为 :not(selector) {样式规则}。示例::not(p) 排除所有非段落元素,li:not(.active) 排除非活动列表项,:not(table) 排除非表格元素,div:not([data-role="primary"]) 排除非 primary 角色的 div 元素。
CSS 中排除部分元素的选择器
:not() 选择器用于排除匹配特定条件的元素。以下是如何使用 :not() 选择器:
<code class="css">:not(selector) { /* 样式规则 */ }</code>
其中:
:not
是选择器类型。selector
是要排除的元素选择器。示例:
要排除所有不是段落的元素,可以使用以下选择器:
<code class="css">:not(p) { color: red; }</code>
其他示例:
li:not(.active)
:not(table)
div:not([data-role="primary"])
以上是css选择器排除部分的元素是什么的详细内容。更多信息请关注PHP中文网其他相关文章!