Can CSS be used to hide the scroll bar? How would you do this?
Set overflow: hidden;
on the body tag like this:
The code above hides both the horizontal and vertical scrollbar.
If you want to hide only the vertical scrollbar, use overflow-y
:
And if you want to hide only the horizontal scrollbar, use overflow-x
:
Note: It'll also disable the scrolling feature. Refer to the below answers if you just want to hide the scroll bar, but not the scroll feature.