View Full Version : Can I move the scrollbar to the left the div?


echoskybound
01-15-2005, 10:53 PM
Is it possible to move the scrollbar to the left on the div? If possible what can I add to this to make it so? Thanks so much to anyone who can give me a hand.

<div id="scroll3" style="position:absolute; left:25%; top:25%; width:75%; height:65%; overflow:auto; z-index:1; padding:1px; border: #000000 2px solid;
scrollbar-face-color: #CCCCCC; scrollbar-highlight-color: #000000; scrollbar-3dlight-color: #CCCCCC; scrollbar-shadow-color: #000000; scrollbar-darkshadow-color: #CCCCCC; scrollbar-track-color: #CCCCCC; scrollbar-arrow-color: #A9E7F1; filter: chroma(color=#CCCCCC);" allowtransparency="true">

kittycat
01-16-2005, 03:11 AM
direction: rtl;
Add that with the style="..." stuff.
To make it so that the text inside shows up normal you'll need to add this right after the opening div tag
<div style="direction: ltr;">
The scrollbar will still be reverse but it will 'unreverse' your content.