#How do I implement this to just some fonts?
5 messages · Page 1 of 1 (latest)
so, you just want a section that has those two css styles applied?
you can just add CSS styles to the element directly, without messing with the site CSS or implementing any class:
<p style="writing-mode: vertical-rl; text-orientation: upright;">
Text that you want to be styled that way
</p>
if you are using that on multiple point in the wiki you may want to make a template and use template styles.
Oh thank you very much.