Want scrolbar to left?

Post non-phpwcms related topics here - but I don't want to see "hey check this or that other cms". Post if you have a point or worthwhile comment, don't post just to increase you post count!
Post Reply
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

Want scrolbar to left?

Post 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!
)-= 1.3.0 user =-(
User avatar
Oliver Georgi
Site Admin
Posts: 9940
Joined: Fri 3. Oct 2003, 22:22
Location: Dessau-Roßlau
Contact:

Post 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
Oliver Georgi | phpwcms Developer | GitHub | LinkedIn
Stim
Posts: 587
Joined: Mon 6. Jun 2005, 13:13

Post 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.
)-= 1.3.0 user =-(
Post Reply