I have a div with fixed width and height and overflow:scroll attribute.
I would like the vertical scroll bar appears in the left side of the div instead of right.
Any css or javascript solution? (supporting both ff and ie)
|
|
|
You can use JScrollPane, a cross-browser jQuery plugin, to create a custom scrollpane with your own scrollbar. I know you didn't ask for a jQuery solution, but I think it's the obvious choice in this case |
|||
|
|
|
You can put your div in anouther div and set outer div's direction to rtl, like that:
But this, unfortunately, doesn't work in FireFox (works in Opera and IE). So maybe some custom scrollbar solution is a way to go if you really need to do it. |
|||
|
|
|
Not possible in standard HTML/CSS. If you really need to do this, you'll have to do some javascripting. But my question would be why would you want to do this? You'll be altering the standard user interface. Unless you've got a fairly specific use-case for it where it makes sense, it'll be a lot of work for virtually no gain, and your users are unlikely to thank you for it. |
|||
|
|