Hi,
I'm looking into a way of doing this in CSS:
.someClass {
background-color: red;
}
.anotherClass, .someClass {
width: 200px;
}
.otherClass {
* Make a "Link" to .SomeClass definitions *
}
The result:
If I apply "otherClass", it will gather it's info from the above definitions, meaning it will end being something like:
.otherClass {
background-color: red;
width: 200px;
}
Is it possible?
I'm looking into a way of doing this in CSS:
.someClass {
background-color: red;
}
.anotherClass, .someClass {
width: 200px;
}
.otherClass {
* Make a "Link" to .SomeClass definitions *
}
The result:
If I apply "otherClass", it will gather it's info from the above definitions, meaning it will end being something like:
.otherClass {
background-color: red;
width: 200px;
}
Is it possible?