1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
|
---
title: ':nth-last-child'
slug: 'Web/CSS/:nth-last-child'
tags:
- ':nth-child'
- ':nth-last-child'
- 伪类
translation_of: 'Web/CSS/:nth-last-child'
---
<div>{{CSSRef}}</div>
<p><strong><code>:nth-last-child()</code></strong> 这个<a href="/en-US/docs/Web/CSS">CSS</a> <a href="/en-US/docs/Web/CSS/Pseudo-classes">伪类</a> 从兄弟节点中从后往前匹配处于某些位置的元素</p>
<pre class="brush: css no-line-numbers">/* 在所有兄弟节点中,从后往前
选择所有4的倍数的节点 */
:nth-last-child(4n) {
color: lime;
}</pre>
<div class="note">
<p><strong>注意:</strong> 这个伪类和 {{Cssxref(":nth-child")}} 基本一致, 但它是从<em>结尾</em>计数, 而不是从开始计数.</p>
</div>
<h2 id="语法">语法</h2>
<p><code>nth-last-child</code>伪类接受一个参数, 用来作为一个模式,从后往前匹配元素.</p>
<h3 id="Keyword_values">Keyword values</h3>
<dl>
<dt><code>odd</code></dt>
<dd>代表一些元素,它们在所在的兄弟节点中,从后往前计算的数字位置是奇数,比如: 1, 3, 5等.</dd>
<dt><code>even</code></dt>
<dd>代表一些元素,它们在所在的兄弟节点中,从后往前计算的数字位置是偶数,比如: 2, 4, 6等.</dd>
</dl>
<h3 id="Functional_notation">Functional notation</h3>
<dl>
<dt><code><An+B></code></dt>
<dd>代表一些元素,它们在所在兄弟节点中的数字位置满足模式 <code>An+B</code>, <code>n</code>是0或者任意的正整数. 从结尾开始计算的第一个元素的索引值是<code>1</code>. <code>A</code> 和 <code>B</code> 必须都是 {{cssxref("<integer>")}}.</dd>
</dl>
<h3 id="Formal_syntax">Formal syntax</h3>
{{csssyntax}}
<h2 id="示例">示例</h2>
<h3 id="选择器示例">选择器示例</h3>
<dl>
<dt><code>tr:nth-last-child(odd)</code> or <code>tr:nth-last-child(2n+1)</code></dt>
<dd>表示HTML表的倒数的奇数行:1、3、5等。</dd>
<dt><code>tr:nth-last-child(even)</code> or <code>tr:nth-last-child(2n)</code></dt>
<dd>表示HTML表的倒数的偶数行:2、4、6等。</dd>
<dt><code>:nth-last-child(7)</code></dt>
<dd>表示倒数第7个元素。</dd>
<dt><code>:nth-last-child(5n)</code></dt>
<dd>表示倒数的第5、10、15等元素。</dd>
<dt><code>:nth-last-child(3n+4)</code></dt>
<dd>表示倒数的第4、7、10、13等元素。</dd>
<dt><code>:nth-last-child(-n+3)</code></dt>
<dd>表示一组兄弟节点中的最后三个元素。</dd>
<dt><code>p:nth-last-child(n)</code> or <code>p:nth-last-child(n+1)</code></dt>
<dd>表示一组兄弟节点中的每个<code><p></code>元素。这与一个简单的<code>p</code>选择器相同。(由于<code>n</code>从0开始,而最后一个元素从1开始,<code>n</code>和<code>n+1</code>都会选择相同的元素。)</dd>
<dt><code>p:nth-last-child(1)</code> or <code>p:nth-last-child(0n+1)</code></dt>
<dd>表示所有处于兄弟节点中倒数第一位的元素<code><p></code>。这与{{cssxref(":last-child")}}选择器相同。</dd>
</dl>
<h3 id="Table_example">Table example</h3>
<h4 id="HTML">HTML</h4>
<pre class="brush: 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>
</pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: 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;
}
</pre>
<h4 id="结果">结果</h4>
<p>{{EmbedLiveSample('Table_example', 300,150)}}</p>
<h3 id="Quantity_query">Quantity query</h3>
<p>数量查询样式元素取决于它们的数量。在本例中,当给定列表中至少有三个列表项时,列表项变为红色。这是通过组合<code>nth-last-child</code>和 <a href="/zh-CN/docs/Web/CSS/General_sibling_selectors">通用兄弟选择器</a>.的功能来实现的</p>
<h4 id="HTML_2">HTML</h4>
<pre class="brush: 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></pre>
<h4 id="CSS_2">CSS</h4>
<pre class="brush: css">/* If there are at least three list items,
style them all */
li:nth-last-child(n+3),
li:nth-last-child(n+3) ~ li {
color: red;
}</pre>
<h4 id="Result">Result</h4>
<p>{{EmbedLiveSample('Quantity_query', '100%', 270)}}</p>
<h2 id="规范">规范</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{ SpecName('CSS4 Selectors', '#nth-last-child-pseudo', ':nth-last-child') }}</td>
<td>{{ Spec2('CSS4 Selectors') }}</td>
<td>No change.</td>
</tr>
<tr>
<td>{{ SpecName('CSS3 Selectors', '#nth-last-child-pseudo', ':nth-last-child') }}</td>
<td>{{ Spec2('CSS3 Selectors') }}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("css.selectors.nth-last-child")}}</p>
<h2 id="See_also" name="See_also">相关资料</h2>
<ul>
<li>{{ Cssxref(":nth-child") }}</li>
<li><a href="https://alistapart.com/article/quantity-queries-for-css">Quantity Queries for CSS</a></li>
</ul>
|