Ampersand (parent selector) inside nested selectors(嵌套选择器内的与号(父选择器))
问题描述
这不是记录在案还是不可能?
Is this not documented or just not possible?
#parent {
#child {
width: 75%;
.additional_parent_class & {
width: 50%;
}
}
}
这基本上会变成:
.additional_parent_class #parent #child {
width: 50%;
}
虽然这很有意义,因为与符号的实现及其使用方式有关.如果我试图让它实现这一点怎么办:
While this makes sense because of the implementation of the ampersand and how it's used. What if I'm trying to get it to achieve this:
#parent.additional_parent_class #child {
width: 50%;
}
我能够做到这一点的唯一方法是在子声明之外编写另一条规则:
The only way I have been able to achieve this is by writing another rule outside of the child declarations:
#parent{
#child {
width: 75%;
}
&.additional_parent_class #child {
width: 50%;
}
}
虽然在此实现中这不一定是麻烦事",但如果#child 有自己的子项现在需要在两个规则中复制,这似乎会适得其反.
While this isn't necessarily a 'pain in the butt' in this implementation, it seems counter productive if #child has children of its own that will now need to be duplicated in both rules.
无论如何,也许我只是挑剔,但如果有更多的方法可以遍历选择器,那就太好了.
Anyway, maybe I'm just being picky, but it would be great if there were more ways to traverse through the selectors.
推荐答案
虽然目前还不可能,但这个和许多对 &
语法的类似改进计划在 Sass 3.3 中发布.您可以在这里关注关于 Sass 问题的功能讨论.
Although it is not currently possible, this and many similar improvements to the &
syntax are slated for release in Sass 3.3. You can follow the discussion about the feature on the Sass issue here.
这篇关于嵌套选择器内的与号(父选择器)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:嵌套选择器内的与号(父选择器)


- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- Flexslider 箭头未正确显示 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01