Tutorial Reversing Text
For right-to-left languages, you can swap the default left-to-right layout in most browsers simply through the dir attribute. text in righ...

https://iskablogs.blogspot.com/2014/03/tutorial-reversing-text.html
For right-to-left languages, you can swap the default left-to-right layout in most browsers simply through the dir attribute.
text in right-to-left language
You can use that attribute on any text element, it doesn't have to be the body. Likewise, you can swap it with just CSS:
body {
unicode-bidi:bidi-override;
direction:rtl;
}
The following are "less practical
text in right-to-left language
You can use that attribute on any text element, it doesn't have to be the body. Likewise, you can swap it with just CSS:
body {
unicode-bidi:bidi-override;
direction:rtl;
}
The following are "less practical