Home > Article > Web Front-end > How to hide the horizontal scroll bar in css
How to hide the horizontal scroll bar in css: First create an HTML sample file; then add a style to the body; then add "overflow-x:hidden;" to the style definition to hide the horizontal scroll bar.
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
We first write a div in the html. Under normal circumstances, there is no scroll bar.
When the content of our page is very long, or we actively set a large width, there will be scroll bars.
Run the page and you can see scroll bars appear.
In order to hide this scroll bar, we can first add a style to the body. [Recommended learning: css video tutorial]
In the style definition, we add
overflow-x: hidden;
style.
#When you run the page again, you can see that the scroll bar on the page is gone.
This method hides the scroll bar. When the content is very long, part of the content will be hidden. Because it needs to be considered carefully, it is best to set a maximum width. , let it wrap automatically.
The above is the detailed content of How to hide the horizontal scroll bar in css. For more information, please follow other related articles on the PHP Chinese website!