Quantcast
Channel: How to change scroll bar position with CSS? - Stack Overflow
Viewing all articles
Browse latest Browse all 5

Answer by Piyush Arya for How to change scroll bar position with CSS?

$
0
0

Try this out. Hope this helps

<div id="single" dir="rtl">
    <div class="common">Single</div>
</div>

<div id="both" dir="ltr">
    <div class="common">Both</div>
</div>



#single, #both{
    width: 100px;
    height: 100px;
    overflow: auto;
    margin: 0 auto;
    border: 1px solid gray;
}


.common{
    height: 150px;
    width: 150px;
}

Viewing all articles
Browse latest Browse all 5

Trending Articles