在这个codepen 中有一个 css 选择器&:hover
,该选择器匹配什么?
问问题
62495 次
3 回答
44
确切地。在 Sass 中,你可以有这样的东西......
div {
background: green;
p {
background: red;
&:hover {
background: blue;
}
&:active {
background: blue;
}
}
}
...当转换为 CSS 时会变成这样:
div {
background: green;
}
div p {
background: red;
}
div p:hover {
background: blue;
}
div p:active {
background: blue;
}
编辑:从 &hover: 到 &:hover
于 2012-07-04T20:40:07.620 回答
5
一种不太广为人知的用法是,您可以将 & 符号添加到样式的末尾,以便父选择器成为子选择器。
例如:
h3
font-size: 20px
margin-bottom: 10px
.some-parent-selector &
font-size: 24px
margin-bottom: 20px
变成,
h3 {
font-size: 20px;
margin-bottom: 10px;
}
.some-parent-selector h3 {
font-size: 24px;
margin-bottom: 20px;
}
你可以在这里阅读更多关于和使用的信息
http://thesassway.com/intermediate/reference-parent-selectors-using-ampersand
于 2013-05-20T21:55:39.340 回答