개발/CSS
CSS) 스크롤 스타일 변경
듀비양
2022. 4. 1. 16:02
내가 자주 사용하는 스크롤 css 스타일
1
2
3
4
|
.scroll_style::-webkit-scrollbar {width:5px}
.scroll_style::-webkit-scrollbar-track {background-color: transparent}
.scroll_style::-webkit-scrollbar-thumb {border-radius: 5px;background-color: #aaa}
.scroll_style::-webkit-scrollbar-button {width: 0;height: 0;}
|
cs |