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 classes ?
|
|
CSS "classes" are not OOP "classes". The inheritance works the other way around.
The div will be 200px wide and have the color red. You override properties of DOM elements with different classes, not properties of CSS classes. CSS "classes" are rulesets, the same way ids or tags can be used as rulesets. |
||||
|
|
|
You can create another class with the properties you want and add this class to your class attribute:
|
|||
|
|
|
You dont inherit in css, you simply add another class to the element which overrides the values
|
|||
|
|
|
Something like this:
The background here will be red, as the css selector is more specific, as we've said it must belong to a div element too! see it in action here: jsFiddle |
||||
|
|
|
i think you can use more than one class in a tag for example:
so when you want to chage all div's color you can just change the .base ...i dont know how to inherit in CSS |
|||||||||
|