:empty
empty擬似クラスは空の要素を選択できるセレクタです。
<ul>
<li id="li1"></li>
<li id="li2">li2</li>
<li id="li3">li3</li>
</ul>
このようなHTMLがあった場合、次のセレクタでは何も含まない#li1が赤色になります。
li:empty{
background:red;
}
参考URL
6.6.5.12. :empty pseudo-class - W3C
登録日 : 2013年06月08日 最終更新日 : 2013年6月8日
同じカテゴリー(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
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ