CSS Change Scrollbar Directions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smartic
    New Member
    • May 2007
    • 150

    CSS Change Scrollbar Directions

    Hi i need to change scrollbar direction from right to left how can i do that i tried every thing i know, and i found only experts will answer this question, so here is my code :

    Code:
    <style type="text/css">
    .parent{
    	height:300px;
    	width:200px;
    	background-color:red;
    	overflow:auto;
    	direction:rtl;
    }
    .child{
    	height:1000px;
    	width:100%;
    	direction:rtl;
    }
    </style>
    <div class="parent">
    	<div class="child"></div>
    </div>
  • smartic
    New Member
    • May 2007
    • 150

    #2
    it work's in all browsers the only problem with FF3.

    Comment

    Working...