Improve the Quality of the Scrolling Experience with Custom CSS Scrollbars

2 years ago

3 min read

Posted by:

Focus

Subscribe to newsletter

By subscribing you agree to with our Privacy Policy.

Share

Hello guys! Have you ever thought about how to improve the appearance of the scrollbar on your website page? A good scrollbar will make the user experience not only smooth but also more aesthetic. In this post, I will discuss how to customize scrollbars using CSS.

The following is a CSS code snippet that you can use to customize the appearance of the scrollbar on screens that have a device width of at least 767px:

Light Mode:

@media only screen
and (min-device-width: 767px)
{
/* width */
::-webkit-scrollbar {
  width: 18px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #181818;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
	border-radius: 9px;
box-shadow: inset 0 0 10px 10px #888;
    border: solid 4px #181818;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #A1A1A1;
	box-shadow: inset 0 0 10px 10px #A1A1A1;
    border: solid 4px #181818;
}
}

Using the code above will help you:

  • Set the scrollbar width to 13px
  • Changed the background color of the scrollbar track to #F0F0F0
  • Change the appearance of the scrollbar handle with a white background, 9px radius, gray box-shadow, and a 3px border colored #F0F0F0
  • Adds a soft effect to the scrollbar handle when the user hovers over it with a colored background #e5e5e5, box-shadow #B1B1B1, and border #F0F0F0


Dark Mode

If your project required a dark color scroll bar, please use this one below:

@media only screen
and (min-device-width: 767px)
{
/* width */
::-webkit-scrollbar {
  width: 18px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #181818;

}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
	border-radius: 9px;
box-shadow: inset 0 0 10px 10px #888;
    border: solid 4px #181818;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #A1A1A1;
	box-shadow: inset 0 0 10px 10px #A1A1A1;
    border: solid 4px #181818;
}
}

Keep in mind that the code above only works on browsers that support the CSS ::-webkit-scrollbar syntax (such as Chrome, Safari, and Opera). For other browser support, you may need to look for another solution.

Hopefully this information is useful for those of you who are looking for ways to improve the appearance of your website. Good luck and always success on your web projects!

Read more

Popup

< 1 min read

How to Limit Popup Height

Use this CSS to limit the height of your popups. It also works on containers.

Read more

Effect

< 1 min read

Blur Effect CSS

Learn how this simple blur effect addition can transform your website’s visual appeal, creating a sleek and modern look that

Read more

Container

< 1 min read

Make Container Scrollable

Add this on the column’s custom CSS panel. Adjust the ‘max-height’ to your needs.

Read more

Search Results

< 1 min read

Search Result Custom Order

To add this code, go to Dashboard > Appearance > Theme File Editor and add one of these codes at

Read more

See How It Works

Create better websites, faster.

Download the Entire Library

Adaptative, neutrally designed components.

Customer Service

Focus Website

Today, June 1

Hi, there 👋

How can I help you?

Start Chat with:

We use cookie to improve your experience on our site. By using our site you consent cookies.