AxelSector's profile picture

Published by

published
updated

Category: Web, HTML, Tech

scroll bar code

to make it small

<style>

::-webkit-scrollbar {
   width: 3px;
   height: 10px;
}
</style>


(you can change the width or make it disappear )

<style>

::-webkit-scrollbar {
   display:  none;
}
</style>


change the scroll thumb

<style>

::-webkit-scrollbar-thumb {
   background: (any color you want or url);
}
</style>

change the scroll background

<style>

::-webkit-scrollbar-track {
   background: (any color you want or url);
}
</style>



>> To add the scroll bar in the first place <<


8 Kudos

Comments

Displaying 1 of 1 comments ( View all | Add Comment )

Mrs.Indiver

Mrs.Indiver's profile picture

USING I LOVE YOU


Report Comment



NP HAVE A GREAT DAY!

by AxelSector; ; Report