Home > Article > Web Front-end > How to cancel scroll bar in css
CSS (Cascading Style Sheets) is a language used to express document styles. It provides many rich style attributes and rules to help us achieve the layout and presentation of web pages. Among them, the scroll bar is a common web page element, but sometimes we may want to cancel its display. This article will introduce how to use CSS to cancel the scroll bar.
1. Cancel the vertical scroll bar
body { overflow-y:hidden; }
body::-webkit-scrollbar { width: 0px; }
body::-ms-scrollbar { width: 0px; }
2. Cancel the horizontal scroll bar
body { overflow-x:hidden; }
body::-webkit-scrollbar-horizontal { height: 0px; }
body::-ms-scrollbar-horizontal { height: 0px; }
3. Cancel the scroll bar arrow
In addition to hiding the scroll bar itself, sometimes it is also necessary to hide the scroll bar arrow (also called the scroll bar button). Here are some ways to do this.
body::-webkit-scrollbar-button { background-color: transparent; }
body::-ms-scrollbar-button { background-color: transparent; }
4. Cancel the scroll bar track
The scroll bar track refers to a line next to the scroll bar and is also the area that the user can drag. Here are some ways to deactivate scrollbar tracks.
body::-webkit-scrollbar-track { background-color: transparent; }
body::-ms-scrollbar-track { background-color: transparent; }
Summary
The above are several ways to cancel scroll bars using CSS. Of course, the compatibility of these methods may vary in different browsers, and we need to make choices and adjustments based on specific circumstances. In practical applications, we also need to comprehensively consider factors such as page design, user experience, and browser compatibility to decide whether to use these methods.
The above is the detailed content of How to cancel scroll bar in css. For more information, please follow other related articles on the PHP Chinese website!