使用与符号(&)和类型选择符组合父类

我在 Sass 中嵌套时遇到了麻烦。假设我有以下 HTML:

<p href="#" class="item">Text</p>
<p href="#" class="item">Text</p>
<a href="#" class="item">Link</a>

当我试图将我的样式嵌套在下面的代码中时,我得到了一个编译错误:

.item {
color: black;
a& {
color:blue;
}
}

当类型选择器是同一元素的一部分时,如何在父选择器之前引用它?

50399 次浏览

For starters, (at time of writing this answer) there's no sass syntax that uses selector&. If you were going to do something like that, you'd need a space between the selector and the ampersand. For example:

.item {
.helper & {


}
}


// compiles to:
.helper .item {


}

The other way of using the ampersand is probably what you're (incorrectly) looking for:

.item {
&.helper {


}
}


// compiles to:
.item.helper {


}

This allows you to extend selectors with other classes, IDs, pseudo-selectors, etc. Unfortunately for your case, this would theoretically compile to something like .itema which obviously doesn't work.

You may just want to rethink how you're writing your CSS. Is there a parent element you could use?

<div class="item">
<p>text</p>
<p>text</p>
<a href="#">a link</a>
</div>

This way, you could easily write your SASS in the following manner:

.item {
p {
// paragraph styles here
}
a {
// anchor styles here
}
}

(Side note: you should take a look at your html. You're mixing single and double quotes AND putting href attributes on p tags.)

This feature has landed in the newest version of Sass, 3.3.0.rc.1(Maptastic Maple)

The two closely related features which you'll need to use are the scriptable &, which you can interpolate within a nested styles to reference parent elements, and the @at-root directive, which places the immediately following selector or block of css at the root (it will not have any parents in the outputted css)

See this Github issue for more details

As Kumar points out, this has been possible since Sass 3.3.0.rc.1 (Maptastic Maple).

The @at-root directive causes one or more rules to be emitted at the root of the document, rather than being nested beneath their parent selectors.

We can combine the @at-root directive along with interpolation #{} to arrive at the intended outcome.

SASS

.item {
color: black;
@at-root {
a#{&} {
color:blue;
}
}
}


// Can also be written like this.
.item {
color: black;
@at-root a#{&} {
color:blue;
}
}

Output CSS

.item {
color: black;
}
a.item {
color: blue;
}

The @at-root-only method will not solve the problem if you intend to extend the closest selector up the chain. As an example:

#id > .element {
@at-root div#{&} {
color: blue;
}
}

Will compile to:

div#id > .element {
color: blue;
}

What if you need to join your tag to .element instead of #id?

There's a function in Sass called selector-unify() that solves this. Using this with @at-root it is possible to target .element.

#id > .element {
@at-root #{selector-unify(&, div)} {
color: blue;
}
}

Will compile to:

#id > div.element {
color: blue;
}

AFAIK In case you want to combine ampersand for class and tags at the same time, you need to use this syntax:

.c1 {
@at-root h1#{&},
h2#{&}
&.c2, {
color: #aaa;
}
}

will compile to

h1.c1,
h2.c1,
.c1.c2 {
color: #aaa;
}

Other uses (like using the class before @at-root or using multiple @at-roots) will lead to errors.

Hope it'll be useful