If, for example, I specify a class as such:
Prince doesn't recognize that it needs to style the text with both 'class1' and 'class2' for some reason even when I explicitly specify it in the css:
It doesn't even recognize that the above text should be styled at all with the above css.
However if I:
Then both 'class1' and 'class2' are now recognized and styled appropriately. The same thing has happened to me when using id's.
Is this a bug or an unsupported usage of multiple classes/id's in the same tag?
Thanks,
Shane
<span class="class1 class2">some text</span>
Prince doesn't recognize that it needs to style the text with both 'class1' and 'class2' for some reason even when I explicitly specify it in the css:
.class1 {
color: #000;
}
.class2 {
text-align: center;
}
It doesn't even recognize that the above text should be styled at all with the above css.
However if I:
<span class="class1"><span class="class2">some text</span></span>
Then both 'class1' and 'class2' are now recognized and styled appropriately. The same thing has happened to me when using id's.
Is this a bug or an unsupported usage of multiple classes/id's in the same tag?
Thanks,
Shane