How to show scroll bar in left side using css andrey понедельник, 17 февраля 2014 г. No Comment

By default scroll bar appears in right side of the div. We can set it in left side also. We can do it from overflow property of css style itself.

to make scroll bar, we should use css property
overflow : scroll;
by default scroll bar uses direction propery as ltr. ltr is stands for left to right.  
overflow : scroll;
direction : ltr;

If you want to set scroll bar in left side, we need to set it to rtl. rtl is stands for right to left.
overflow : scroll;
direction : rtl;
Here you can find the DEMO
By default scroll bar appears in right side of the div. We can set it in left side also. We can do it from overflow property of css style itself.

to make scroll bar, we should use css property
overflow : scroll;
by default scroll bar uses direction propery as ltr. ltr is stands for left to right.  
overflow : scroll;
direction : ltr;

If you want to set scroll bar in left side, we need to set it to rtl. rtl is stands for right to left.
overflow : scroll;
direction : rtl;
Here you can find the DEMO
by Jillur Rahman

Jillur Rahman is a Web designers. He enjoys to make blogger templates. He always try to make modern and 3D looking Templates. You can by his templates from Themeforest.

Follow him @ Twitter | Facebook | Google Plus

No Comment