:last-child
last-child擬似クラスは同一の親要素内の最後の子要素を検索できるCSSセレクタです。
<ul>
<li id="list1">list1</li>
<li id="list2">list2</li>
<li id="list3">list3</li>
<li id="list4">list4</li>
</ul>
このようなHTMLがあった場合、次のセレクタでは#list4が赤色になります。
li:last-child{
color:red;
}
このセレクタはnth-last-child擬似クラスを利用した次のセレクタと同じ意味をもちます。
li:nth-last-child(1){
color:red;
}
参考URL
:last-child pseudo-class - W3C
登録日 : 2013年03月25日 最終更新日 : 2013年3月25日
同じカテゴリー(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
- 属性セレクタ
- 子孫セレクタ
- 要素セレクタ
- ユニーバサルセレクタ