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

  1. テキスト
  2. テキスト
  3. 最後の子

E の斜体は仮の名前です。

上に戻る