E:first-child

ある要素の、最初の子である E要素に対してスタイルが適用されます。E:nth-child(1) と同じです。

example

ol li:first-child { color: hotpink; }

source

<ol>
 <li>最初の子</li>
 <li>テキスト</li>
 <li>テキスト</li>
</ol>

display

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

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

上に戻る