:nth-last-child()

基线 广泛可用

此功能已得到很好的建立,并且可以在许多设备和浏览器版本上运行。它自以下浏览器版本以来一直可用: 2015年7月.

:nth-last-child() CSS 伪类 根据元素在其同级元素组中的位置进行匹配,从末尾开始计数。

试一试

语法

nth-last-child 伪类使用单个参数指定,该参数表示从末尾开始计数的元素匹配模式。

css
:nth-last-child(<nth> [of <complex-selector-list>]?) {
  /* ... */
}

关键字值

odd

表示其在同级元素系列中的数字位置为奇数的元素:1、3、5 等,从末尾开始计数。

even

表示其在同级元素系列中的数字位置为偶数的元素:2、4、6 等,从末尾开始计数。

函数表示法

<An+B>

表示其在同级元素系列中的数字位置与模式 An+B 匹配的元素,对于 n 的每个正整数或零值,其中

  • A 是一个整数步长,
  • B 是一个整数偏移量,
  • n 是所有非负整数,从 0 开始。

它可以理解为列表中的第 An+B 个元素。从末尾开始计数的第一个元素的索引为 1AB 都必须具有 <integer> 值。

of <selector> 语法

通过传递选择器参数,我们可以选择与该选择器匹配的倒数第 n 个元素。例如,以下选择器匹配最后三个重要列表项,这些列表项被分配了 class="important"

css
:nth-last-child(-n + 3 of li.important) {
}

注意:这与将选择器移到函数外部不同,例如

css
li.important: nth-last-child(-n + 3);

此选择器如果列表项也在最后三个子元素中,则会应用样式。

示例

示例选择器

tr:nth-last-child(odd)tr:nth-last-child(2n+1)

表示 HTML 表格的奇数行:1、3、5 等,从末尾开始计数。

tr:nth-last-child(even)tr:nth-last-child(2n)

表示 HTML 表格的偶数行:2、4、6 等,从末尾开始计数。

:nth-last-child(7)

表示第七个元素,从末尾开始计数。

:nth-last-child(5n)

表示元素 5、10、15 等,从末尾开始计数。

:nth-last-child(3n+4)

表示元素 4、7、10、13 等,从末尾开始计数。

:nth-last-child(-n+3)

表示同级元素组中的最后三个元素。

p:nth-last-child(n)p:nth-last-child(n+1)

表示同级元素组中的每个 <p> 元素。这与简单的 p 选择器相同。(由于 n 从零开始,而最后一个元素从一开始,因此 nn+1 都将选择相同的元素。)

p:nth-last-child(1)p:nth-last-child(0n+1)

表示每个 <p> 作为同级元素组中的第一个元素,从末尾开始计数。这与 :last-child 选择器相同。

表格示例

HTML

html
<table>
  <tbody>
    <tr>
      <td>First line</td>
    </tr>
    <tr>
      <td>Second line</td>
    </tr>
    <tr>
      <td>Third line</td>
    </tr>
    <tr>
      <td>Fourth line</td>
    </tr>
    <tr>
      <td>Fifth line</td>
    </tr>
  </tbody>
</table>

CSS

css
table {
  border: 1px solid blue;
}

/* Selects the last three elements */
tr:nth-last-child(-n + 3) {
  background-color: pink;
}

/* Selects every element starting from the second to last item */
tr:nth-last-child(n + 2) {
  color: blue;
}

/* Select only the last second element */
tr:nth-last-child(2) {
  font-weight: 600;
}

结果

数量查询

数量查询根据元素的数量对其进行样式设置。在此示例中,当给定列表中至少有三个列表项时,列表项将变为红色。这是通过结合 nth-last-child 伪类和 后续同级组合器 的功能来实现的。

HTML

html
<h4>A list of four items (styled):</h4>
<ol>
  <li>One</li>
  <li>Two</li>
  <li>Three</li>
  <li>Four</li>
</ol>

<h4>A list of two items (unstyled):</h4>
<ol>
  <li>One</li>
  <li>Two</li>
</ol>

CSS

css
/* If there are at least three list items,
   style them all */
li:nth-last-child(n + 3),
li:nth-last-child(3) ~ li {
  color: red;
}

结果

of <selector> 语法示例

在这个示例中,有一个无序列表包含姓名。某些项目应用了 noted 类,然后使用粗的下边框突出显示。

HTML

html
<ul>
  <li class="noted">Diego</li>
  <li>Shilpa</li>
  <li class="noted">Caterina</li>
  <li>Jayla</li>
  <li>Tyrone</li>
  <li>Ricardo</li>
  <li class="noted">Gila</li>
  <li>Sienna</li>
  <li>Titilayo</li>
  <li class="noted">Lexi</li>
  <li>Aylin</li>
  <li>Leo</li>
  <li>Leyla</li>
  <li class="noted">Bruce</li>
  <li>Aisha</li>
  <li>Veronica</li>
  <li class="noted">Kyouko</li>
  <li>Shireen</li>
  <li>Tanya</li>
  <li class="noted">Marlene</li>
</ul>

CSS

css
* {
  font-family: sans-serif;
}

ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 1.2rem;
  padding-left: 0;
}

li {
  margin: 0.125rem;
  padding: 0.25rem;
  border: 1px solid tomato;
}

.noted {
  border-bottom: 5px solid tomato;
}

在下面的 CSS 中,我们正在定位标记为 class="noted" 的**奇数**列表项。

css
li:nth-last-child(odd of .noted) {
  background-color: tomato;
  border-bottom-color: seagreen;
}

结果

带有 class="noted" 的项目具有粗的下边框,项目 1、7、14 和 20 具有实心背景,因为它们是带有 class="noted"奇数列表项。

规范

规范
选择器级别 4
# nth-last-child 伪类

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅