Less css 中的嵌套伪类
我正在尝试使用 LESS CSS 来编写我的 CSS,但我遇到了嵌套伪类的问题 我的
.class1 {
&:nth-of-type(2n) {
.class2{
}
}
}
输出是:
.class1.class2:nth-of-type(2n) {}
但我想要这个:有
.class1:nth-of-type(2n) .class2{}
什么想法吗?
I am trying to use LESS CSS to write my CSS but i got a problem with nested pseudoclasses
I
.class1 {
&:nth-of-type(2n) {
.class2{
}
}
}
the output is:
.class1.class2:nth-of-type(2n) {}
but I want to have this:
.class1:nth-of-type(2n) .class2{}
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不是问题。您的 LESS CSS 版本可能无法生成正确的代码。尝试在线 less 转换器,看看它是否工作正常。这是我得到的:(
进)
(出)
Not an issue. You probably had a version of LESS CSS that did not produce the correct code. Try the online less converter and see that it works fine. Here is what I get:
(in)
(out)