The CSS direction property represents the direction of the text within a block-level element.
<style>
.example-CSS-Text-Direction-paragraph{
direction: rtl;
}
</style>
<p class="example-CSS-Text-Direction-paragraph">This text is running from right to left. This can be useful for languages where the text runs from right to left. Not so useful for english though...</p>
Output
This text is running from right to left. This can be useful for languages where the text runs from right to left. Not so useful for english though...
