是否可以通过使用多个父选择器到达嵌套选择器的顶部?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这在 SCSS 中是不可能的。你能做的最好的
事情就是编译为
That's not possible in SCSS. The best you can do is
which compiles to