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

:last-of-type

Псевдокласс :last-of-type находит последнего потомка с заданным тегом в списке детей родительского элемента.

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

Синтаксис

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

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

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

Пример 1

1
2
3
<h2>Heading</h2>
<p>Paragraph 1</p>
<p>Paragraph 2</p>
1
2
3
4
p:last-of-type {
  color: red;
  font-style: italic;
}

Пример работы псевдо-класса :last-of-type

Пример 2

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

Второй пример работы псевдо-класса :last-of-type

Комментарии