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 [类,不是元素!]的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!