CSS: How to say .class:last-of-type [classes, not elements!](CSS:怎么说 .class:last-of-type [类,不是元素!])
问题描述
可能重复:
如何选择CSS 中具有特定类名的最后一个孩子"?
正如标题所说,我想将 css 规则处理到具有特定类的特定类型的最后一个元素.以下代码完美运行:
As the title says, i want to adress css rules to the last element of a certain type which has a certain class. The following code works perfectly:
div:last-of-type { margin-right:0; }
但我想要类似的东西
div.class:last-of-type { margin-right:0; }
如何做到这一点?
推荐答案
很遗憾,使用 last-of-type
无法找到最后一个 .class
.
Unfortunately finding the last .class
is not possible with last-of-type
.
编辑:要真正为这个答案添加一些建设性的东西,你可以回退到 JavaScript 来定位这个选择器,或者修改你的标记/CSS.虽然我发现自己处于类选择器的 last-of-type
很有用的情况,但只要多加思考,就没有什么可以解决的.
Edit:
To actually add something constructive to this answer, you could fallback to JavaScript to locate this selector, or revise your markup/CSS. Whilst I have found myself in the situation that last-of-type
for a class selector would be useful, it's nothing that cannot be worked around with a little more thought.
这篇关于CSS:怎么说 .class:last-of-type [类,不是元素!]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:CSS:怎么说 .class:last-of-type [类,不是元素!]


基础教程推荐
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01