I need to change the direction of my div tag to rtl like table.
when we change direction of a table then it changes columns order.
I need this action to do on div tag. this action is necessary when i switch to other language like persian, arabic... then the layout need to change their places from right to left.
here is my code :
<div style="direction: rtl; display: block; ">
<div style="display: inline">
My</div>
<div style="display: inline">
name</div>
<div style="display: inline">
is</div>
<div style="display: inline">
mojtaba</div>
</div>
Notice that before i used display:table & display:table-cell and it was perfect as what i desired but the problem with that this code is limited to some new version browsers as http://www.quirksmode.org/css/display.html stated that. so somehow i need to figure a way to fix above codes as i want to.