Most web developers know that you can apply multiple css classes on an element:
<p class="paragraph special bigtext">Some special paragraph with large text.</p>
How would you add more and more css classes (i.e. dynamically) to a single element such as this when creating an XSL template?
Thanks.