--- title: ':last-child' slug: 'Web/CSS/:last-child' translation_of: 'Web/CSS/:last-child' ---
{{CSSRef}}

概述

:last-child CSS 伪类 代表父元素的最后一个子元素。

语法

{{csssyntax}}

示例

HTML 内容

<ul>
  <li>此元素背景色不是lime</li>
  <li>我的也不是lime。</li>
  <li>我的才是lime! :)</li>
</ul>

CSS 内容

li:last-child {
  background-color: lime;
}

{{EmbedLiveSample('%E7%A4%BA%E4%BE%8B', '100%', 100)}}

规范

Specification Status Comment
{{SpecName('CSS4 Selectors', '#last-child', ':last-child')}} {{Spec2('CSS4 Selectors')}} No change
{{SpecName('CSS3 Selectors', '#last-child', ':last-child')}} {{Spec2('CSS3 Selectors')}} Initial definition

浏览器支持

{{Compat("css.selectors.last-child")}}

相关链接