Home > Article > Web Front-end > How to cancel scroll bar in html
htmlHow to cancel the scroll bar: 1. Cancel the vertical scroll bar through "overflow-y:hidden"; 2. Cancel the horizontal scroll bar through "overflow-x:hidden".
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, DELL G3 computer
Remove the scroll bar from the html page
Sometimes it is particularly necessary. Some web pages need to remove the horizontal scroll bar and vertical scroll bar. How to remove it? It is very simple. Look at the code:
Let there be no vertical bars:
<body style=`overflow:-Scroll;overflow-y:hidden` > </body>
Let the horizontal bar disappear:
<body style=`overflow:-Scroll;overflow-x:hidden` > </body>
The scroll bar at the bottom of Firefox does not display:
html { overflow:-moz-scrollbars-vertical; }
Have time to study the full screen
Recommended learning: "HTML video tutorial"
The above is the detailed content of How to cancel scroll bar in html. For more information, please follow other related articles on the PHP Chinese website!