0

What I'm trying to do is refer a css class in another css class:

.customClass1{
     //some styles
}

.customClass2{
     //some styles
}

.customClass3{
     use customClass1;
     use customClass2;
}

Is this even possible?

MrSmith
  • 370
  • 4
  • 22

1 Answers1

1

You should use a CSS pre-processor like LESS, then you can use Mixins LESS Mixins