set scrollbar width css
::-webkit-scrollbar {
width: 2em;
height: 2em
}
::-webkit-scrollbar-button {
background: #ccc
}
::-webkit-scrollbar-track-piece {
background: #888
}
::-webkit-scrollbar-thumb {
background: #eee
}
set scrollbar width css
::-webkit-scrollbar {
width: 2em;
height: 2em
}
::-webkit-scrollbar-button {
background: #ccc
}
::-webkit-scrollbar-track-piece {
background: #888
}
::-webkit-scrollbar-thumb {
background: #eee
}
css scrollbar width
/* The syntax, with all the available styling */
(selected-element)::-webkit-scrollbar {
width: 16px;
background: transparent;
display: none;
}
(selected-element)::-webkit-scrollbar-track {
background: whitesmoke;
border-radius: 3px;
}
(selected-element)::-webkit-scrollbar-thumb {
background: tomato;
border-radius: 10px;
}
/* A modern way of doing this */
selected-element {
scrollbar-width: thin; /* 'thin' or any usual number measurements like '5px' */
scrollbar-color: <thumb-color> <track-color>; /* Use normal color system i.e rgb or hex or hsl */
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us