タグと組み合わせて & (クラスを参照) を使用したい。この例のように:
.back {
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
color: blue;
&:hover {
color: red;
}
}
a-tags にのみホバーを使用したい。以下は不可
a&:hover {
color: red;
}
誰もこれを知っていますか?