Перейти к содержанию

:first-of-type

Псевдокласс :first-of-type находит первого потомка своего типа среди детей родителя.

Псевдоклассы

Синтаксис

1
2
3
4
5
/* Selects any <p> that is the first element
       of its type among its siblings */
p:first-of-type {
  color: red;
}

Спецификации

Описание и примеры

Этот пример показывает, как применится универсальный селектор, если простой селектор не написан.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<article>
  <div>This `div` is first!</div>
  <div>This <span>nested `span` is first</span>!</div>
  <div>
    This <em>nested `em` is first</em>, but this <em>nested `em` is last</em>!
  </div>
  <div>This <span>nested `span` gets styled</span>!</div>
  <b>This `b` qualifies!</b>
  <div>This is the final `div`.</div>
</article>
1
2
3
article :first-of-type {
  background-color: pink;
}

Результат работы псевдокласса :first-of-type

Комментарии