CSS scroll bar style modification code

CSS scroll bar style modification code

CSS scroll bar style modification code

.scroll::-webkit-scrollbar { // Vertical and horizontal scroll bar width width: 1px;
    height: 1px;
}
.scroll::-webkit-scrollbar-thumb { // Scrollbar background bar style border-radius: 1px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #5b5f63;
}
.scroll::-webkit-scrollbar-track { // Scroll bar button style-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 1px;
    background: #00284d;
}

Summarize

The above is the code for modifying the CSS scroll bar style that I introduced to you. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Comparing Document Locations

>>:  Code for aligning form checkbox and radio text

Recommend

Two methods to implement Mysql remote connection configuration

Two methods to implement Mysql remote connection ...

Use pure CSS to achieve switch effect

First is the idea We use the <input type="...

Explanation of the problem that JavaScript strict mode does not support octal

Regarding the issue that JavaScript strict mode d...

How to use MySQL limit and solve the problem of large paging

Preface In daily development, when we use MySQL t...

CSS to achieve compatible text alignment in different browsers

In the front-end layout of the form, we often nee...

Introduction to MySQL database performance optimization

Table of contents Why optimize? ? Where to start?...

Detailed explanation of the steps of using ElementUI in actual projects

Table of contents 1. Table self-sorting 2. Paging...

Detailed examples of the difference between methods watch and computed in Vue.js

Table of contents Preface introduce 1. Mechanism ...

A brief discussion on Flink's fault-tolerant mechanism: job execution and daemon

Table of contents 1. Job Execution Fault Toleranc...

Example of creating table statements for user Scott in MySQL version of Oracle

Overview: Oracle scott user has four tables, whic...

Detailed explanation of JSON.parse and JSON.stringify usage

Table of contents JSON.parse JSON.parse Syntax re...

How to change the terminal to a beautiful command line prompt in Ubuntu 18

I reinstalled VMware and Ubuntu, but the command ...