multiple CSS classes different way
I know one way how to do it, like this:
.class1{}
.class2{}
<img class="class1 class2"
But I'd like to know if it is possible to do this inside css:
in html you call just one class, and in the css that one class has some properties and calls some other class, which adds some more properties to the first class
|