Answers for "scrollbar in"

CSS
0

scrollbar

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
Posted by: Guest on September-02-2021
0

scrollbar

::-webkit-scrollbar {
            width: 20px
        }

        ::-webkit-scrollbar-thumb {
            border: 7px solid transparent;
            background-clip: padding-box;
            border-radius: 9999px;
            background-color: rgba(0, 0, 0, .3)
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: rgba(0, 0, 0, .5)
        }

body {overflow: overlay}
Posted by: Guest on March-08-2022

Browse Popular Code Answers by Language