I feel dumb for having been a web programmer for so long and not knowing the answer to this question, I actually hope it\'s possible and I just didn\'t know about rather tha
Have a look at CSS compose: https://bambielli.com/til/2017-08-11-css-modules-composes/
according to them:
.serif-font { font-family: Georgia, serif; } .display { composes: serif-font; font-size: 30px; line-height: 35px; }
I use it in my react project.