标签:style class blog code color 使用
@at-root
和&
的结合&
在Sass中所起的作用,文章开头就简单的进行演示了。在@at-root
中也同样可以配合&
一起使用,下面我们同样来看几个用例:
.foo { @at-root .bar & { color:gray; } }
.bar .foo {
color: gray;
}
大家很容易发现,这个示例和不加@at-root
的SCSS代码一样,可以编译出完全相同的代码:
.foo { .bar & { color:gray; } }
同样的,&
符和@at-root
按下面的方式一起工作:
.foo { @at-root & .bar { color:gray; } }
.foo .bar {
color: gray;
}
同样如此,这种方式与不加@at-root
方式,运行的效果是一样的:
.foo { & .bar { color:gray; } }
如此说明,在Sass中同时使用@at-root
和&
起到的作用是一样的,换句话说,这样并没有带来新的特性,而且在整个开发中还带来了额外的工作量。
Sass @at-root (2),布布扣,bubuko.com
标签:style class blog code color 使用
原文地址:http://www.cnblogs.com/aobingyan/p/3809047.html