Pure CSS to modify the browser scrollbar style example

Pure CSS to modify the browser scrollbar style example

Use CSS to modify the browser scroll bar style

::-webkit-scrollbar {
  width: .5rem;
  height: .5rem;
  background: hsla(0, 0%, 100%, 0.6);
}

::-webkit-scrollbar-track {
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  border-radius: 0;
  background-color: rgba(95,95,95,.4);
  transition: all .2s;
  border-radius: .5rem;

  &:hover {
    background-color: rgba(95,95,95, .7);
  }
} 

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.

<<:  Simple principles for web page layout design

>>:  Use and understanding of MySQL triggers

Recommend

Experience in solving tomcat memory overflow problem

Some time ago, I submitted a product version to t...

Summarize the problems encountered in using Vue Element UI

Table of contents 1. DateTimePicker date selectio...

A brief analysis of MySQL's WriteSet parallel replication

【Historical Background】 I have been working as a ...

Web Design Tutorial (2): On Imitation and Plagiarism

<br />In the previous article, I introduced ...

Detailed process of building mysql5.7.29 on centos7 of linux

1. Download MySQL 1.1 Download address https://do...

Use of align-content in flex layout line break space

1. The effect diagram implemented in this article...

Introduction to the method attribute of the Form form in HTML

1 method is a property that specifies how data is ...

Detailed explanation of the use of find_in_set() function in MySQL

First, let’s take an example: There is a type fie...

Detailed explanation of Linux netfilter/iptables knowledge points

Netfilter Netfilter is a packet processing module...

The difference and choice between datetime and timestamp in MySQL

Table of contents 1 Difference 1.1 Space Occupanc...

Web developers are concerned about the coexistence of IE7 and IE8

I installed IE8 today. When I went to the Microso...

Detailed explanation of CSS3 to achieve responsive accordion effect

I recently watched a video of a foreign guy using...

How to install ZSH terminal in CentOS 7.x

1. Install basic components First, execute the yu...

MySQL 5.7.17 installation and configuration tutorial under CentOS6.9

CentOS6.9 installs Mysql5.7 for your reference, t...

Explain how to analyze SQL efficiency

The Explain command is the first recommended comm...