:nth-last-of-type()

**:nth-last-of-type()** CSS 伪类 根据元素在同类型(标签名称)的兄弟姐妹中的位置匹配元素,从末尾开始计数。

尝试一下

语法

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

有关其语法的更详细说明,请参阅 :nth-last-child

css
:nth-last-of-type(<An+B> | even | odd) {
  /* ... */
}

示例

HTML

html
<div>
  <span>This is a span.</span>
  <span>This is another span.</span>
  <em>This is emphasized.</em>
  <span>Wow, this span gets limed!!!</span>
  <del>This is struck through.</del>
  <span>Here is one last span.</span>
</div>

CSS

css
span:nth-last-of-type(2) {
  background-color: lime;
}

结果

规范

规范
选择器级别 4
# nth-last-of-type-pseudo

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅