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
If you want to set scroll bar in left side, we need to set it to rtl. rtl is stands for right to left.
to make scroll bar, we should use css property
by default scroll bar uses direction propery as ltr. ltr is stands for left to right.overflow : scroll;
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.
Here you can find the DEMO.overflow : scroll;
direction : rtl;
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
If you want to set scroll bar in left side, we need to set it to rtl. rtl is stands for right to left.
to make scroll bar, we should use css property
by default scroll bar uses direction propery as ltr. ltr is stands for left to right.overflow : scroll;
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.
Here you can find the DEMO.overflow : scroll;
direction : rtl;
No Comment