: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中文網其他相關文章!