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
Yes, it is possoble.
Write:
.class1,.class2 {text-indent:100;} .class1{color:red;} .class2{font-size:30px;}
More info here.