CSS3 changes the browser scroll bar style

CSS3 changes the browser scroll bar style

Note: This method is only applicable to webkit-based browsers.

The browser scroll bar is too wide and ugly, which affects daily development. What should I do?

The appearance of the scroll bar consists of two parts: 1. The overall slide of the scroll bar 2. The slider inside the scroll bar slide

In CSS, the scroll bar consists of 3 parts

name::-webkit-scrollbar //Overall scrollbar stylename::-webkit-scrollbar-track //Scrollbar trackname::-webkit-scrollbar-thumb //Scrollbar internal slider

Note: The above three are all pseudo-classes. Please change name to the element name you want to change.

For example: change the scroll bar style of the entire page

body::-webkit-scrollbar{ //First change the scroll bar width of body: 8px;

}

body::-webkit-scrollbar-track{//Change the scroll bar track color of the body background: rgb(200, 200, 200);

border-radius: 5px;

}

body::-webkit-scrollbar-thumb{//Finally, change the style of the body's scroll bar slide background: rgb(120, 120, 120);

border-radius: 5px;

}

◆ The right side shows the scroll bar style after the upper code is changed

◆ You can add background, transparency, border, rounded corners and other attributes to the style to make the browser more beautiful

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Several ways to encrypt and decrypt MySQL (summary)

>>:  Tutorial on deploying springboot package in linux environment using docker

Recommend

Implementing image fragmentation loading function based on HTML code

Today we will implement a fragmented image loadin...

Example code for implementing random roll caller in html

After this roll call device starts calling the ro...

Various types of MySQL indexes

What is an index? An index is a data structure th...

WeChat Mini Programs Achieve Seamless Scrolling

This article example shares the specific code for...

Summary of horizontal scrolling website design

Horizontal scrolling isn’t appropriate in all situ...

How to implement distributed transactions in MySQL XA

Table of contents Preface XA Protocol How to impl...

Automated front-end deployment based on Docker, Nginx and Jenkins

Table of contents Preliminary preparation Deploym...

Summary of four situations of joint query between two tables in Mysql

Generally speaking, in order to get more complete...

A pitfall and solution of using fileReader

Table of contents A pitfall about fileReader File...

Docker case analysis: Building a Redis service

Table of contents 1 Create mount directories and ...

Solve the conflict between docker and vmware

1. Docker startup problem: Problem Solved: You ne...

The basic use of html includes links, style sheets, span and div, etc.

1. Links Hypertext links are very important in HTM...

How to specify parameter variables externally in docker

This article mainly introduces how to specify par...

HTML5+CSS3 coding standards

The Golden Rule No matter how many people are wor...