E:last-child
ある要素の、最後の子である E要素に対してスタイルが適用されます。E:nth-last-child(1) と同じです。
example
ol li:last-child { background-color: skyblue; }
source
<ol> <li>テキスト</li> <li>テキスト</li> <li>最後の子</li> </ol>
display
- テキスト
- テキスト
- 最後の子
※ E の斜体は仮の名前です。
ある要素の、最後の子である E要素に対してスタイルが適用されます。E:nth-last-child(1) と同じです。
ol li:last-child { background-color: skyblue; }
<ol> <li>テキスト</li> <li>テキスト</li> <li>最後の子</li> </ol>
※ E の斜体は仮の名前です。