:not()
:not()は否定擬似クラスと呼ばれ特定のセレクタで指定した要素から、引数に指定したセレクタの要素を取り除くセレクタです。
li:not(:last-child){
color:red;
}
上のコードは最後の子要素ではないli要素がマッチします。
参考URL
6.6.7. The negation pseudo-class - W3C
登録日 : 2013年06月23日 最終更新日 : 2013年6月23日
同じカテゴリー(Selector)のエントリー
- 兄弟セレクタ
- 隣接セレクタ
- 子セレクタ
- :not()
- idセレクタ
- classセレクタ
- ::after
- ::before
- ::first-letter
- ::first-line
- :indeterminate
- :checked
- :disabled
- :enabled
- :lang()
- :target
- :focus
- :active
- :hover
- :visited
- :link
- :empty
- :only-of-type
- :only-child
- :last-of-type
- :first-of-type
- :last-child
- :first-child
- :nth-last-of-type()
- :nth-of-type()
- :nth-last-child()
- :nth-child()
- :root
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ