:nth-last-child()
试一试
语法
nth-last-child
伪类使用单个参数指定,该参数表示从末尾开始计数的元素匹配模式。
css
:nth-last-child(<nth> [of <complex-selector-list>]?) {
/* ... */
}
关键字值
函数表示法
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
从零开始,而最后一个元素从一开始,因此n
和n+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 表格仅在浏览器中加载