How TO – Hide Scrollbar

Add overflow: hidden; to hide both the horizontal and vertical scrollbar.

Example:

Output:

To only hide the vertical scrollbar, or only the horizontal scrollbar, use overflow-y or overflow-x:

Example:

To only hide the vertical scrollbar, or only the horizontal scrollbar, use overflow-y or overflow-x:

Note: overflow: hidden will also remove the functionality of the scrollbar. It is not possible to scroll inside the page.

Hide Scrollbars But Keep Functionality

To hide the scrollbars, but still be able to keep scrolling, you can use the following code:

Example:

Out put:

Leave a comment

Your email address will not be published. Required fields are marked *