Can a CSS class inherit one or more other classes?

前端 未结 30 3692
挽巷
挽巷 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:41

    You can do is this

    CSS

    .car {
      font-weight: bold;
    }
    .benz {
      background-color: blue;
    }
    .toyota {
      background-color: white;
    }
    

    HTML

    I'm bold and blue.

    I'm bold and white.

提交回复
热议问题