Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.1k views
in Technique[技术] by (71.8m points)

sass - SCSS select parent and children if parent has certain class

This is my goal:

.item.bold,
.item.blod .child-1,
.item.blod .child-2 {
    // certain properties here
    // which apply both to parent and children
    // but only if parent has class "bold"
}

Is there a simple way to do that in scss? I know this:

%my-properties {
    // some properties
}
.item {
    &.bold {
        @extend %my-properties;
        .child-1,
        .child-2 {
            @extend %my-properties;
        }
    }
}

But is there a way to match both parent and children at once?

question from:https://stackoverflow.com/questions/65843749/scss-select-parent-and-children-if-parent-has-certain-class

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...