The content of this article is about how to implement custom scroll bar style in css3? (code), it has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
CSS3 custom scroll bar style
Scroll bar composition
::-webkit-scrollbar Scroll bar overall part
::-webkit-scrollbar-thumb Scroll bar slider
: :-webkit-scrollbar-track Scroll bar sliding track
::-webkit-scrollbar-button Buttons at both ends of the scroll bar
::-webkit-scrollbar-track-piect Scroll bar as a whole minus the slider part
css code is as follows:
.content{ over-flow:auto; } .content::-webkit-scrollbar{ width:4px; 设置轨道宽度 } .content::-webkit-scrollbar-thumb{ border-radius: 10px; background-color: #333; -webkit-box-shadow:inset(0px,0px,5px,#555); } .content::-webkit-scrollbar-track{ border-radius:10px; background-color:#999; -webkit-box-shadow:inset(0px,0px,5px,#555); }
Related recommendations:
How to implement a check mark on the menu in css? (Code)
CSS3 property: How to use text-shadow text shadow
The above is the detailed content of How to implement custom scroll bar style in css3? (code). For more information, please follow other related articles on the PHP Chinese website!