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

:first-child

Псевдо-класс :first-child находит любой элемент, являющийся первым в своём родителе.

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

Синтаксис

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

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

Пример

1
2
3
4
5
6
7
8
9
<div>
  <p>This text is selected!</p>
  <p>This text isn't selected.</p>
</div>

<div>
  <h2>This text isn't selected: it's not a `p`.</h2>
  <p>This text isn't selected.</p>
</div>
1
2
3
4
5
p:first-child {
  color: lime;
  background-color: black;
  padding: 5px;
}

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

Комментарии