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

MAC+PyCharm+Flask+Vue.js build system

Table of contents Configure node.js+nvm+npm npm s...

Use crontab to run the script of executing jar program regularly in centOS6

1. Write a simple Java program public class tests...

Reasons and solutions for MySQL selecting the wrong index

In MySQL, you can specify multiple indexes for a ...

MySQL 5.7.21 installation and configuration tutorial

The simple installation configuration of mysql5.7...

How to prevent duplicate submission in jquery project

In new projects, axios can prevent duplicate subm...

Springboot+Vue-Cropper realizes the effect of avatar cutting and uploading

Use the Vue-Cropper component to upload avatars. ...

Is it necessary to give alt attribute to img image tag?

Do you add an alt attribute to the img image tag? ...

Detailed steps for IDEA to integrate docker to achieve remote deployment

1. Enable remote access to the docker server Log ...

Problems and solutions when installing and using VMware

The virtual machine is in use or cannot be connec...

Native JS to achieve special effects message box

This article shares with you a special effect mes...

How to create a Django project + connect to MySQL

1: django-admin.py startproject project name 2: c...

How to block IP and IP range in Nginx

Written in front Nginx is not just a reverse prox...

How does MySQL implement ACID transactions?

Preface Recently, during an interview, I was aske...