Home  >  Article  >  Web Front-end  >  How to cancel scroll bar in html

How to cancel scroll bar in html

藏色散人
藏色散人Original
2021-05-26 11:22:375377browse

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".

How to cancel scroll bar in html

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn