Как сделать scroll bar браузера и сайта красивей?
- 18 октября, 2022
- 9:48 пп
- Нет комментариев
::-webkit-scrollbar {
width: 12px;
height: 5px;
cursor: pointer
}
::-webkit-scrollbar-track-piece {
background: #fff;
-webkit-border-radius: 3px;
border: 1px solid #ccc;
}
::-webkit-scrollbar-thumb:vertical {
height: 5px;
background-color: #bababa;
-webkit-border-radius: 15px;
cursor: pointer
}
::-webkit-scrollbar-thumb:horizontal {
width: 10px;
background-color: #fff;
-webkit-border-radius: 3px;
cursor: pointer
}