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 [类,不是元素!]
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01