πͺText Orientation
.text-orientation-mixed
.text-orientation-mixedSets the text orientation to mixed.
CSS equivalent: text-orientation: mixed;
Example usage:
<div class="text-orientation-mixed">
<p>This text has a mixed text orientation.</p>
</div>.text-orientation-upright
.text-orientation-uprightSets the text orientation to upright.
CSS equivalent: text-orientation: upright;
Example usage:
<div class="text-orientation-upright">
<p>This text has an upright text orientation.</p>
</div>.text-orientation-sideways
.text-orientation-sidewaysSets the text orientation to sideways.
CSS equivalent: text-orientation: sideways;
Example usage:
<div class="text-orientation-sideways">
<p>This text has a sideways text orientation.</p>
</div>.text-orientation-sideways-right
.text-orientation-sideways-rightSets the text orientation to sideways-right.
CSS equivalent: text-orientation: sideways-right;
Example usage:
<div class="text
-orientation-sideways-right">
<p>This text has a sideways-right text orientation.</p>
</div>Last updated