I want to use the & (which refers to a class) in combination with a tag. Like this example:
.back {
text-transform: uppercase;
text-decoration: none;
font-weight: 700;
color: blue;
&:hover {
color: red;
}
}
I want only to use the hover for a-tags. The following is not possible
a&:hover {
color: red;
}
Does anybody know this?