The CSS unicode-bidi property is used in conjunction with the direction property to specify which direction the text should run. (i.e. from left to right or right to left)
Example of Code
<style>
.example-CSS-unicode-bidi-paragraph{
direction: rtl;
unicode-bidi: bidi-override;
}
</style>
<p class="example-CSS-unicode-bidi-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...
