:only-child
only-child擬似クラスは兄弟要素が一つしかない要素を選択できるセレクタです。
<ul>
<li>li1</li>
</ul>
このようなHTMLがあった場合、次のセレクタでは兄弟要素が他に存在するli要素が赤色になります。
li:only-child{
color:red;
}
以下のように兄弟要素が複数ある場合はonly-child擬似クラスでは指定できません。
<ul>
<li>li1</li>
<li>li2</li>
</ul>
参考URL
6.6.5.10. :only-child 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
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ