是否可以通过使用多个父选择器到达嵌套选择器的顶部?

发布于 2024-10-10 10:45:14 字数 423 浏览 1 评论 0原文

在 SCSS 中,单个“&”将被父选择器替换。我认为应该可以执行以下操作:

#main {
    .post {
        .date {}
        .entry {

            margin-right: 0.833em;

            .title,
            &&&.callout { font-size: 3em; }
        }
    }
}

理想情况下,前面的内容将编译为包含以下规则:

#main .post .entry .title { font-size: 3em; }
#main .callout { font-size: 3em; }

有什么方法可以使这项工作起作用吗?

In SCSS, a single `&' will be replaced by the parent selector. I think it should be possible to do the following:

#main {
    .post {
        .date {}
        .entry {

            margin-right: 0.833em;

            .title,
            &&&.callout { font-size: 3em; }
        }
    }
}

ideally, the preceding would compile to include the following rules:

#main .post .entry .title { font-size: 3em; }
#main .callout { font-size: 3em; }

Is there any way to make this work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我偏爱纯白色 2024-10-17 10:45:14

这在 SCSS 中是不可能的。你能做的最好的

#main {
  .callout { font-size: 3em; }

  .post {
    .entry {
      margin-right: 0.833em;

      .title {
        @extend .callout;
      }
    }
  }
}

事情就是编译为

#main .callout, #main .post .entry .title {
  font-size: 3em; }
#main .post .entry {
  margin-right: 0.833em; }

That's not possible in SCSS. The best you can do is

#main {
  .callout { font-size: 3em; }

  .post {
    .entry {
      margin-right: 0.833em;

      .title {
        @extend .callout;
      }
    }
  }
}

which compiles to

#main .callout, #main .post .entry .title {
  font-size: 3em; }
#main .post .entry {
  margin-right: 0.833em; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文