Page 1 of 1

Want scrolbar to left?

Posted: Mon 19. Mar 2007, 12:19
by Stim
Add this:

Code: Select all

<html dir="rtl">
<body>
<div dir="ltr">

text text text here, inside the DIV tag :)

</div>
</body>
</html>
Enjoy!

Posted: Tue 20. Mar 2007, 06:25
by Oliver Georgi
better to use CSS than changing source

Code: Select all

body { direction: rtl; }
or if some elements are missing try

Code: Select all

* { direction: rtl; }
Oliver

Posted: Tue 20. Mar 2007, 18:21
by Stim
Oliver Georgi wrote:better to use CSS than changing source
Probably it is. "My code" only work in IE, not in FF.

But this may also work in FF?! If so its better also.