Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

scss mixins - Sass: applying a shared class to every selector in a content block

If I have a block of styles in Sass like this:

.class1 {

   .class2 {

   }

   .class3 {

       .class4 {

       }
   }
}

How can I use Sass to transform the above into the form below? I would like to avoid repeatedly typing .class or #{$i}.

.class1.class {

   .class2.class {

   }

   .class3.class {

       .class4.class {

       }
   }
}
question from:https://stackoverflow.com/questions/65866282/sass-applying-a-shared-class-to-every-selector-in-a-content-block

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

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...