Is it possible to use existing css class as content in another class ?
I mean something like:
Contained in some library: .class1 { text-indent: 100 } I
I am assuming you want whatever is in .class1 plus some extra properties in .class2
.class1
.class2
One way is to simply apply both classes to the element you want..
another is to name both classes when setting the properties
.class1, .class2 {text-indent: 100} .class2{/*extra properties here*/}