I have a css class as follows:
.sibsi
{
background-color: #008FFF;
padding: 5px;
cursor: pointer;
color: #ffffff;
}
How do you create a new class that inherits everything from the class .sibsi but where I can override individual css properties? In other words, I want to have all the properties of sibsi but change just the background-color.
The only thing I've found is this: https://stackoverflow.com/a/5417412/753632
but that essentially means specifying all the classes in places where the classes are used.