The default scroll bar style in Windows is ugly, and there are many places in the project where scroll bars are displayed, so I went back to look at CSS3 and found that it is possible to customize the scroll bar style without plug-ins, which is exactly what I want. The code is as follows: / Define the scroll bar height and width and the background height and width to correspond to the size of the horizontal and vertical scroll bars respectively / ::-webkit-scrollbar { width: 6px; height: 6px; background-color: #F5F5F5; } / Define the inner shadow + rounded corners of the scroll bar track / ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); border-radius: 10px; background-color: #FFF; } / Define slider inner shadow + rounded corners / ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3); background-color: #AAA; } Specific meaning and other settings: ::-webkit-scrollbar The entire scroll bar :horizontal //The horizontal pseudo-class applies to any horizontal scroll bar: vertical //The vertical pseudo-class applies to any vertical scroll bar: decrement //The decrement pseudo-class applies to buttons and track pieces. A button or track fragment that represents a decrement, such as a region or button that can move a region up or to the right: increment //The increment pseudo-class applies to buttons and track pieces. Indicates an incremental button or track fragment, such as a region or button that can move a region down or to the left: start //The start pseudo-class applies to buttons and track pieces. Indicates whether the object (button track fragment) is placed in front of the slider: end //end pseudo-class applies to buttons and track pieces. Indicates whether the object (button track fragment) is placed behind the slider: double-button //The double-button pseudo-class applies to both buttons and track pieces. Determines whether the track ends at a pair of buttons. That is, the orbital debris is next to a pair of buttons together. :single-button //The single-button pseudo-class applies to both buttons and track pieces. Determines whether the end of the track is a button. That is, the orbital fragments are next to a separate button. :no-button The no-button pseudo-class indicates that there is no button at the end of the track. :corner-present //The corner-present pseudo-class indicates whether the corner of the scroll bar exists. :window-inactive //Applicable to all scroll bars, indicating the area containing the scroll bar when the focus is not on the window. ::-webkit-scrollbar-track-piece:start { /Scroll bar top or left half/ } ::-webkit-scrollbar-thumb:window-inactive { /When the focus is not in the current area slider state/ } ::-webkit-scrollbar-button:horizontal:decrement:hover { /State when the mouse is on the button below the horizontal scroll bar/ } Summarize This is the end of this article about CSS3 custom scrollbar style::webkit-scrollbar. For more relevant CSS3 custom scrollbar style content, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! |
<<: Vue.js front-end web page pop-up asynchronous behavior example analysis
>>: Discussion on the problem of iframe node initialization
Intro Previously, our docker images were stored i...
Table of contents Preface How does antd encapsula...
In life, the Internet is everywhere. We can play ...
I don't know when it started, but every time ...
1. Start the Docker container Start a new Docker ...
Table of contents Preface 1. Props, $emit one-way...
need: Use docker to start nginx + tomcat dual pro...
Background of the problem The server monitoring s...
In the field of design, there are different desig...
<br />Words are the inevitable product of hu...
Table of contents background What are the methods...
A simple Linux guessing game source code Game rul...
In summary: 1. Consider performance when designin...
Environment Preparation 1. Environment Constructi...
1. Create tables <br /> First, create two t...