Is it possible to extend a style class?
for example i have to classes
.common {
color:red;
}
.commonFont {
font-family:Arial;
font-size:8pt;
}
I need the class commonFont also to have the properties of the class common.
How can this be done?
for example i have to classes
.common {
color:red;
}
.commonFont {
font-family:Arial;
font-size:8pt;
}
I need the class commonFont also to have the properties of the class common.
How can this be done?
Comment