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
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; }