以下来自Twitter Bootstrap的CSS&符号(&)字符是什么意思?
.clearfix {
*zoom: 1;
&:before,
&:after {
display: table;
content: "";
}
&:after {
clear: both;
}
}
答案 0 :(得分:78)
那是LESS,而不是CSS。
此语法允许您嵌套嵌套选择器修饰符。
.clearfix {
&:before {
content: '';
}
}
将编译为:
.clearfix:before {
content: '';
}
使用&
,嵌套选择器编译为.clearfix:before
没有它,它们会编译为.clearfix :before
。
答案 1 :(得分:12)
嵌套&
选择SASS和LESS中的父元素。它不仅适用于伪元素,它可以与任何类型的选择器一起使用。
e.g。
h1 {
&.class {
}
}
相当于:
h1.class {
}
答案 2 :(得分:1)
In SCSS & LESS
a {
text-decoration: underline;
@include padding(15px);
display: inline-block;
& img {
padding-left: 7px;
margin-top: -4px;
}
}
is Equal to in CSS :
a {
text-decoration: underline;
@include padding(15px);
display: inline-block;
}
a img {
padding-left: 7px;
margin-top: -4px;
}