Home  >  Article  >  Web Front-end  >  How to set html scroll bar style

How to set html scroll bar style

coldplay.xixi
coldplay.xixiOriginal
2021-03-16 14:50:4427344browse

How to set the html scroll bar style: first create a new document, then create a new CSS file; then create a DIV tag and fill in the content, and set the size of the scroll bar inner frame, the code is [overflow-y: scroll; overflow-x: scroll;].

How to set html scroll bar style

The operating environment of this tutorial: windows7 system, html5&&css3 version, DELL G3 computer.

How to set the HTML scroll bar style:

1. Create a new HTML document and set up the basic structure here.

How to set html scroll bar style

#2. Create a new CSS file and associate it with the HTML document using link.

How to set html scroll bar style

3. Create a DIV tag and fill it with content.

How to set html scroll bar style

#4. First set the size of the inner frame of the scroll bar, and use border to check whether there is any excess. It can be seen that a lot of content is exceeded.

How to set html scroll bar style

5、

overflow-y: scroll;

overflow-x: scroll;

Add this The style scroll bar will appear.

How to set html scroll bar style

How to set html scroll bar style

6,

#ds::-webkit-scrollbar-track {
    background-color: green;
}
 
#ds::-webkit-scrollbar {
    width: 20px;
}
 
#ds::-webkit-scrollbar-thumb {
    background-color: pink;
    border-radius: 50%;
}

Now we can style the tracks and scroll bars.

How to set html scroll bar style

Related learning recommendations: html tutorial

The above is the detailed content of How to set html scroll bar style. 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