left scroll bar

liunx

Guest
Is it possible to have a scroll bar on left hand side without it affecting the contents of the page. I used this code <br />
direction:rtl;<br />
<br />
but as well as flipping the scrollbar it also flips the contents of the page (which pisses me off). OK, peeps, how do i fix the problem? By the way, I use in in style sheets (.css):confused:<!--content-->direction will inherit all the way down unless you declare otherwise. in other words, tell the various elements containing your content (such as <div> and <table>, etc.) that you want them to go ltr, and the body to go rtl.<br />
<br />
not all browsers will conform!<br />
<br />
if it doesn't work, you're screwed :P<!--content-->you don't ned the full word "driection" just use<br />
<br />
<html Dir=rtl><br />
<br />
or what ever you use it in.<!--content-->
 
Back
Top