首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

:last-of-type

:last-of-typeCSS伪类表示与其类型相同的一组同胞元素中的最后一个元素。

代码语言:javascript
复制
/* 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开始,但这不再是必需的。

语法

代码语言:javascript
复制
:last-of-type

实例

为选定<p>元素中的最后一个<em>元素,您可以使用以下方法:

代码语言:javascript
复制
p em:last-of-type {
? color: lime;
}
代码语言:javascript
复制
<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

扫码关注腾讯云开发者

领取腾讯云代金券

http://www.vxiaotou.com