Answer the question
In order to leave comments, you need to log in
How do you set css rules for an element whose parent has a class?
I have this code:
.some-class-wrap {
.some-class {
.link {
margin: 100px;
}
}
}
.some-class-wrap {
.some-class {
.link {
margin: 100px;
}
//так
&.active {
.link {
}
}
//или так
&.active .link {
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question