How to Always Show Scrollbars
- Previous Page Hide Scrollbar
- Next Page Device Appearance
Learn how to always show scrollbars using CSS.
How to Force/Always Show Scrollbars
Add overflow: scroll;
, to show both horizontal and vertical scrollbars at the same time:
Example
body { overflow: scroll; /* Show scrollbars */ }
To show only the vertical scrollbar or only the horizontal scrollbar, please use overflow-y
or overflow-x
:
Example
body { overflow-y: scroll; /* Show vertical scrollbar */ overflow-x: scroll; /* Show horizontal scrollbar */ }
Related Page
Tutorial:CSS Overflow
Reference Manual:CSS overflow Property
- Previous Page Hide Scrollbar
- Next Page Device Appearance