PDA

View Full Version : scrollbar to the left in div?


frontline
01-20-2003, 04:01 PM
Hello
how can i force the scrollbar to appear in the left side of div instead of the default right?
thanks

Stoffel
01-20-2003, 04:02 PM
I am not sure if that's even possible

redhead
01-20-2003, 04:13 PM
like discussed here?

http://www.codingforums.com/showthread.php?threadid=1048

:thumbsup: hope that link helps...

cg9com
01-20-2003, 06:02 PM
basically it can be done with the dir="" attribute.

<div dir="rtl">
</div>

but any and all text/objects must contain dir="ltr" to readjust the direction.....

dir="ltr" Left To Right
dir="rtl" Right To Left

Stoffel
01-20-2003, 06:26 PM
Ok it is possible :D

cg9com
01-20-2003, 08:26 PM
yes it is, along with lang="" , dir="" is a comman attribute and works with just about every element.
excluding obvious ones like <img> in which direction or language would be irrelavent