I\'m overriding the site CSS to an RTL version when specific language is chosen.
I have an element which has to have absolute positioning. In the LTR version, I do <
left:auto;
This will default the left back to the browser default.
left
So if you have your Markup/CSS as:
.myClass { position:absolute; left:0; }
When setting RTL, you could change to:
.myClass { position:absolute; left:0; } .myClass.rtl { left:auto; right:0; }