Inherit CSS class

后端 未结 9 1212
既然无缘
既然无缘 2020-12-09 07:45

I have one base .base{} in my CSS file with couple properties. I want to change only color and other properties to stay same. How to inherit this base class inother classe

9条回答
  •  时光取名叫无心
    2020-12-09 07:58

    You dont inherit in css, you simply add another class to the element which overrides the values

    .base{    
      color:green;
      ...other props
    }
    
    .basealt{
       color:red;
    }
    
    
    

提交回复
热议问题