Can a CSS class inherit one or more other classes?

前端 未结 30 3026
挽巷
挽巷 2020-11-22 00:01

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

30条回答
  •  有刺的猬
    2020-11-22 00:47

    An element can take multiple classes:

    .classOne { font-weight: bold; }
    .classTwo { font-famiy:  verdana; }
    
    

    I'm bold and verdana.

    And that's about as close as you're going to get unfortunately. I'd love to see this feature, along with class-aliases someday.

提交回复
热议问题