Open In App

CSS scrollbar-width Property

The scrollbar-width property is used to set the width or thickness of an element’s scrollbar when shown. This property can be used on pages where the user interface requires the element to be displayed more prominently and shrinking the scrollbar width gives more space to the element.
This a currently an experimental property and some of the major browsers may not be supported.

Syntax: 



scrollbar-width: auto | thin | none | initial | inherit

Property Values:  

Example:






<!DOCTYPE html>
<html>
<head>
    <title>CSS | scrollbar-width property</title>
    <style>
        .scrollbar-auto {
            scrollbar-width: auto;
            background-color: lightgreen;
            height: 150px;
            width: 200px;
            overflow-y: scroll;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | scrollbar-width</b>
 
    <p>scrollbar-width: auto</p>
 
    <div class="scrollbar-auto">
        GeeksforGeeks is a computer science
        portal with a huge variety of well
        written and explained computer science
        and programming articles, quizzes and
        interview questions. The portal also
        has dedicated GATE preparation and
        competitive programming sections.
    </div>
</body>
</html>

Output:  

Example:  




<!DOCTYPE html>
<html>
<head>
    <title>CSS | scrollbar-width</title>
    <style>
        .scrollbar-thin {
            scrollbar-width: thin;
            background-color: lightgreen;
            height: 150px;
            width: 200px;
            overflow-y: scroll;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | scrollbar-width</b>
 
    <p>scrollbar-width: thin</p>
 
    <div class="scrollbar-thin">
        GeeksforGeeks is a computer science
        portal with a huge variety of well
        written and explained computer science
        and programming articles, quizzes and
        interview questions. The portal also
        has dedicated GATE preparation and
        competitive programming sections.
    </div>
</body>
</html>

Output:  

Example: 




<!DOCTYPE html>
<html>
<head>
    <title>CSS | scrollbar-width</title>
    <style>
        .scrollbar-none {
            scrollbar-width: none;
            background-color: lightgreen;
            height: 150px;
            width: 200px;
            overflow-y: scroll;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | scrollbar-width</b>
 
    <p>scrollbar-width: none</p>
 
    <div class="scrollbar-none">
        GeeksforGeeks is a computer science
        portal with a huge variety of well
        written and explained computer science
        and programming articles, quizzes and
        interview questions. The portal also
        has dedicated GATE preparation and
        competitive programming sections.
    </div>
</body>
</html>

Output:  

Example:  




<!DOCTYPE html>
<html>
<head>
    <title>CSS | scrollbar-width</title>
    <style>
        .scrollbar-initial {
            scrollbar-width: initial;
            background-color: lightgreen;
            height: 150px;
            width: 200px;
            overflow-y: scroll;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | scrollbar-width</b>
 
    <p>scrollbar-width: initial</p>
 
    <div class="scrollbar-initial">
        GeeksforGeeks is a computer science
        portal with a huge variety of well
        written and explained computer science
        and programming articles, quizzes and
        interview questions. The portal also
        has dedicated GATE preparation and
        competitive programming sections.
    </div>
</body>
</html>

Output:  

Example:  




<!DOCTYPE html>
<html>
<head>
    <title>CSS | scrollbar-width</title>
    <style>
        .scrollbar-thin {
            scrollbar-width: thin;
            background-color: lightgreen;
            height: 150px;
            width: 200px;
            overflow-y: scroll;
            margin: 10px;
        }
 
        .scrollbar-inherit {
            scrollbar-width: inherit;
            background-color: green;
            height: 50px;
            width: 150px;
            overflow-y: scroll;
        }
    </style>
</head>
 
<body>
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
    <b>CSS | scrollbar-width</b>
 
    <p>scrollbar-width: inherit</p>
 
    <div class="scrollbar-thin">
        <div class="scrollbar-inherit">
            This text is inside a parent element.
            This div has an inherited scrollbar.
        </div>
        GeeksforGeeks is a computer science
        portal with a huge variety of well
        written and explained computer science
        and programming articles, quizzes and
        interview questions. The portal also
        has dedicated GATE preparation and
        competitive programming sections.
    </div>
</body>
</html>

Output:  

Supported Browsers: The browser supported by the scrollbar-width property are listed below: 


Article Tags :