CSS参考手册
选择 | Selectors
:last-of-type
该:last-of-type
CSS伪类表示与其类型相同的一组同胞元素中的最后一个元素。
/* Selects any paragraph, but only if it is the last paragraph inside */
/* its parent element (not necessarily the last child) */
p:last-of-type {
color: lime;
}
注意:如最初定义的那样,所选元素必须有一个父元素。从选择器级别4开始,但这不再是必需的。
语法
:last-of-type
实例
为选定<p>
元素中的最后一个<em>
元素,您可以使用以下方法:
p em:last-of-type {
color: lime;
}
<p>
<em>I'm not lime :(</em>
<strong>I'm not lime :(</strong>
<em>I'm lime :D</em>
<strong>I'm also not lime :(</strong>
</p>
<p>
<em>I'm not lime :(</em>
<span>
<em>I am lime!</em>
</span>
<strong>I'm not lime :(</strong>
<em>I'm lime :D</em>
<span>
<em>I am also lime!</em>
<strike> I'm not lime </strike>
</span>
<strong>I'm also not lime :(</strong>
</p>
...结果为:
规范
Specification |
Status |
Comment |
---|---|---|
Selectors Level 4The definition of ':last-of-type' in that specification. |
Working Draft |
Matching elements are not required to have a parent. |
Selectors Level 3The definition of ':last-of-type' in that specification. |
Recommendation |
Initial definition. |
浏览器兼容性
Feature |
Chrome |
Edge |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
---|---|---|---|---|---|---|
Basic support |
1.0 |
(Yes) |
3.5 (1.9.1) |
9.0 |
9.5 |
3.2 |
Feature |
Android |
Edge |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
---|---|---|---|---|---|---|
Basic support |
2.1 |
(Yes) |
1.0 (1.9.1) |
9.0 |
10.0 |
3.2 |
选择 | Selectors相关

层叠样式表( Cascading Style Sheets )是一种用来表现 HTML 或 XML 等文件样式的计算机语言。CSS 不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。