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?
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?
You should use a CSS pre-processor like LESS, then you can use Mixins LESS Mixins