How to hide html horizontal but not vertical scrollbar?
How to hide html horizontal but not vertical scrollbar?
I completed my post-graduation in 2013 in the engineering field. Engineering is the application of science and math to solve problems. Engineers figure out how things work and find practical uses for scientific discoveries. Scientists and inventors often get the credit for innovations that advance the human condition, but it is engineers who are instrumental in making those innovations available to the world. I love pet animals such as dogs, cats, etc.
Aryan Kumar
21-Jul-2023Sure, here is how you can hide the horizontal scrollbar in HTML but not the vertical scrollbar:
HTML
The
overflow-x: hiddenCSS property tells the browser to hide the horizontal scrollbar for the element with the classcontainer. Theoverflow-y: visibleCSS property tells the browser to keep the vertical scrollbar visible for the element with the classcontainer.This will hide the horizontal scrollbar for the container element, but will keep the vertical scrollbar visible.
Here is an example of how this would look in the browser:
The horizontal scrollbar is hidden, but the vertical scrollbar is still visible.