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 [类,不是元素!]


- 400或500级别的HTTP响应 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 失败的 Canvas 360 jquery 插件 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Fetch API 如何获取响应体? 2022-01-01