:nth-last-of-type - CSS(层叠样式表) 编辑
概述
:nth-last-of-type(an+b)
这个 CSS 伪类 匹配那些在它之后有 an+b-1
个相同类型兄弟节点的元素,其中 n
为正值或零值。它基本上和 :nth-of-type
一样,只是它从结尾处反序计数,而不是从开头处。
可以在 :nth-child
中查看关于语法参数更详细的描述。
语法
:nth-last-of-type( <nth> )
Example
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>
<strike>This is struck through.</strike>
<span>Here is one last span.</span>
</div>
CSS
span:nth-last-of-type(2) {
background-color: lime;
}
Result
规范
规范 | 状态 | 备注 |
---|---|---|
Selectors Level 4 :nth-last-of-type | Working Draft | Matching elements are not required to have a parent. |
Selectors Level 3 :nth-last-of-type | Recommendation | Initial definition. |
浏览器兼容性
BCD tables only load in the browser
相关资料
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论