Less css 中的嵌套伪类

发布于 2024-11-27 23:44:26 字数 340 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

巴黎盛开的樱花 2024-12-04 23:44:26

不是问题。您的 LESS CSS 版本可能无法生成正确的代码。尝试在线 less 转换器,看看它是否工作正常。这是我得到的:(

进)

.class1 { 
  &:nth-of-type(2n) {  
    .class2{  
      x:1;
    } 
  } 
}

(出)

.class1:nth-of-type(2n) .class2 {
  x: 1;
}

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)

.class1 { 
  &:nth-of-type(2n) {  
    .class2{  
      x:1;
    } 
  } 
}

(out)

.class1:nth-of-type(2n) .class2 {
  x: 1;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文