E:nth-last-child(n)
ある要素の、最後から数えて n番目の子である E要素に対してスタイルが適用されます。 E:nth-child(n) と同様、n の部分には、an+b の形式や odd 、even も指定できます。
example
ol li:nth-last-child(odd) { color: hotpink; } ol li:nth-last-child(2) { color: deepskyblue; }
source
<ol> <li> odd </li> <li> 指定なし </li> <li> odd </li> <li> 後ろから2番目 </li> <li> odd </li> </ol>
display
- odd
- 指定なし
- odd
- 後ろから2番目
- odd
※ E、n、a、b など斜体は仮の名前です。