How to Make Page Text Go From Right to Left?

412 views Asked by At

I am trying to change a template direction from ltr into rtl. I added dir="rtl" code to and the divs but nothing changes I also tried to do it in css by adding direction: rtl; to body class and other classes but still not working!

{
    direction: rtl;
}

and finally tried js code but also doesn't work

var children = document.children;
var i;
for (i = 0; i < children.length; i++) {
   children[i].style.direction = "rtl";
}

How could I do this?

1

There are 1 answers

0
KetZoomer On

direction: rtl; should work.

Snippet:

<div style="direction: rtl;">
    hi
</div>