Answers for "how to design scrollbar using css"

CSS
0

custom scrollbar

body::-webkit-scrollbar {
    width: 12px;
}
body::-webkit-scrollbar-thumb {
    background: #ff9c44;
    border-radius: 6px;
}

by moheen
Posted by: Guest on September-01-2021

Code answers related to "how to design scrollbar using css"

Browse Popular Code Answers by Language