Table of Contents
What is a scroll bar?
How to set a pure CSS scroll bar
How to set a CSS scroll bar that is compatible with the entire network
Summary
Home Web Front-end Front-end Q&A How to set css scroll bar

How to set css scroll bar

Apr 23, 2023 am 10:05 AM

With the continuous development of web pages, user preferences are also gradually changing. It is precisely because of these changes that many websites are gradually updating their design styles, and one of the indispensable elements is the scroll bar. It has to be said that scroll bars have become an essential design element for many websites. In CSS, the style of scroll bars can be achieved through a series of CSS selectors. Let’s analyze in detail how to set CSS scroll bars.

What is a scroll bar?

Before introducing how to set scroll bars, we first need to understand what scroll bars are.

The scroll bar is an interactive component that we often use. It often appears in the sidebar, frame or containing area of ​​a web page. Use scroll bars to easily scroll content within a smaller area to see the entire content. Generally speaking, scroll bars are divided into two types: horizontal scroll bars and vertical scroll bars, of which vertical scroll bars are the most commonly used one.

In CSS, we can easily customize our own scroll bar style. Next, we will introduce how to set up CSS scroll bars one by one.

How to set a pure CSS scroll bar

To set a CSS scroll bar, you need to use ::-webkit-scrollbar and ::-webkit-scrollbar-thumbSelector. Below, we will analyze their usage respectively.

::-webkit-scrollbarSelector

::-webkit-scrollbarThe selector allows you to style the scroll bar container, including Scroll bar background color, height, width, etc. For example, using the ::-webkit-scrollbar selector, we can set the entire scrollbar to gray:

::-webkit-scrollbar {
  background-color: #eee;
  width: 8px;
}
Copy after login

The above code defines a scrollbar with a width of 8 pixels container and set its background to light gray.

We can also use CSS pseudo-classes to customize the status of the scroll bar, such as: scroll bar hovering, scroll bar clicked, etc. For example, the following code changes the scroll bar color to red when the mouse is hovering over it:

::-webkit-scrollbar:hover {
  background-color: #f00;
}
Copy after login

::-webkit-scrollbar-thumbSelector

In the ::-webkit-scrollbar selector, we have defined the style of the scroll bar, but the appearance of the scroll bar is still the default style, which is relatively monotonous. At this time, we need to use the ::-webkit-scrollbar-thumb selector to set the style of the scroll bar thumb (thumb).

Here is an example of setting the thumb style:

::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 4px;
}
Copy after login

This code defines a gray background and 4-pixel rounded corners for the scroll bar thumb.

In addition to setting the color and rounded corners, we can also further beautify the appearance of the scroll bar by setting shadows, borders, etc.:

::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 4px;
  box-shadow: inset 1px 1px 2px rgba(0,0,0,.1);
  border: 1px solid #d8d8d8;
}
Copy after login

The above code defines a scroll bar with borders and shadow effects scrollbar thumb.

How to set a CSS scroll bar that is compatible with the entire network

Although we have introduced how to set a pure CSS scroll bar above, this method can only take effect on browsers with Webkit kernel (for example: Chrome, Safari, etc.). For other browsers (such as Firefox, Edge, etc.), JavaScript is required to achieve similar effects.

Fortunately, some third-party CSS libraries have provided us with solutions in this regard. For example, we can use the mCustomScrollbar CSS library to easily implement cross-browser custom scroll bars.

First, introduce the mCustomScrollbar CSS file:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css" />
Copy after login

Then, where you need to apply the custom scroll bar, introduce the following two files:

<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.concat.min.js"></script>
Copy after login

Next, in JavaScript In the code, use the following code to initialize mCustomScrollbar:

$(document).ready(function () {
  $(".content").mCustomScrollbar();
});
Copy after login

The above code will apply mCustomScrollbar to the element with class content, and can take effect in various browsers.

At the same time, mCustomScrollbar also supports some advanced customization options, such as: scroll bar width, scroll bar color, scroll bar behavior, etc. These options can be set in the initialization function:

$(".content").mCustomScrollbar({
  theme: "dark",
  scrollbarPosition: "inside",
  axis: "y",
  scrollInertia: 500
});
Copy after login

The above code defines a black theme, an internal vertical scroll bar, and a scroll bar effect of 500 milliseconds.

Summary

In this article, we have explained in detail the use of CSS to customize scroll bars. We implement custom scroll bars in different browsers by introducing the ::-webkit-scrollbar and ::-webkit-scrollbar-thumb selectors and the mCustomScrollbar library. Therefore, when designing a web page, you may wish to customize a scroll bar effect that is better than the default scroll bar according to your design needs.

The above is the detailed content of How to set css scroll bar. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is useEffect? How do you use it to perform side effects? What is useEffect? How do you use it to perform side effects? Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

How does the React reconciliation algorithm work? How does the React reconciliation algorithm work? Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits? How does currying work in JavaScript, and what are its benefits? Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How do you connect React components to the Redux store using connect()? How do you connect React components to the Redux store using connect()? Mar 21, 2025 pm 06:23 PM

Article discusses connecting React components to Redux store using connect(), explaining mapStateToProps, mapDispatchToProps, and performance impacts.

What is useContext? How do you use it to share state between components? What is useContext? How do you use it to share state between components? Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers? How do you prevent default behavior in event handlers? Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components? What are the advantages and disadvantages of controlled and uncontrolled components? Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles