Monday, November 14, 2022
HomeProgrammingStylish and Cool Customized CSS Scrollbars: A Showcase | CSS-Methods

Stylish and Cool Customized CSS Scrollbars: A Showcase | CSS-Methods


On this article we will probably be diving into the world of scrollbars. I do know, it doesn’t sound too glamorous, however belief me, a well-designed web page goes hand-in-hand with an identical scrollbar. The old style chrome scrollbar simply doesn’t slot in as a lot.

We will probably be wanting into the nitty gritty particulars of a scrollbar after which have a look at some cool examples.

Parts of a scrollbar

That is extra of a refresher, actually. There are a bunch of posts proper right here on CSS-Methods that go into deep element on the subject of customized scrollbar styling in CSS.

To type a scroll bar you could be accustomed to the anatomy of a scrollbar. Take a look at this illustration:

A webpage wireframe with a scrollbar highlighting the scrollbar thumb and scrollbar track.

The 2 fundamental elements to bear in mind listed here are:

  1. The monitor is the background beneath the bar.
  2. The thumb is the half that the person clicks and drags round.

We are able to change the properties of the entire scrollbar utilizing the vendor-prefixed::-webkit-scrollbar selector. We may give the scroll bar a hard and fast width, background colour, rounded corners… a number of issues! If we’re customizing the primary scrollbar of a web page, then we are able to use ::-webkit-scrollbar straight on the HTML factor:

html::-webkit-scrollbar {
  /* Model away! */
}

If we’re customizing a scroll field that’s the results of overflow: scroll, then we are able to use ::-webkit-scrollbar on that factor as an alternative:

.factor::-webkit-scrollbar {
  /* Model away! */
}

Right here’s a fast instance that types the HTML factor’s scrollbar in order that it’s broad with a purple background:

What if we solely need to change the scrollbar’s thumb or monitor? You guessed it — we’ve particular prefixed pseudo-elements for these two: ::-webkit-scrollbar-thumb and ::-webkit-scrollbar-track, respectively. Right here’s an thought of what’s attainable once we put all of these items collectively:

Sufficient brushing up! I need to present you three levels of customized scrollbar styling, then open up an enormous ol’ showcase of examples pulled from throughout the net for inspiration.

Easy and stylish scrollbars

A customized scrollbar can nonetheless be minimal. I put collectively a bunch of examples that subtly change the looks, whether or not with a slight colour change to the thumb or monitor, or some mild styling to the background.

As you’ll be able to see, we don’t must go nuts on the subject of scrollbar styling. Generally a refined change is all it takes to reinforce the general person expertise with a scrollbar that matches the general theme.

Cool eye-catching scrollbars

However let’s admit it: it’s enjoyable to go a little bit overboard and train some creativity. Listed here are some bizarre and distinctive scrollbars that could be “an excessive amount of” in some instances, however they positive are eye-catching.

Yet another…

How about we take the scrollbar for a spin in a prepare for the thumb and tracks for the, properly, the monitor!

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments