Is it possible to apply a CSS class defined in css1.css to another HTML class defined in css2.css?
In css1.css:
div.classPredefined { border: solid 1px #000; }
In css2.css:
div.newClass { background: #CCC; /*apply-class: classPredefined;*/ }
Although the 'apply-class' property does not exist in CSS, I want to be able to apply .newClass in my HTML and have .classPrededined automatically applied as well.
Please disregard the option
<div class="classPrededined newClass"></div>
Thank you