Writing Custom Scroll Bar CSS

Writing Custom Scroll Bar CSS

Ever thought of a custom scroll bar with same theme as site color simple easy elegant Simple and Flat

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 6px #293E65; */
    border-radius: 0px;
    background: #fff;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #1A315B;
}

screen30

With Gradient

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #bf64cb;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(#bf64cb, #81338b);
}

screen31

Leave a Reply

Your email address will not be published. Required fields are marked *