WEB/CSS
scroll css custom
나나나나나나나ㅏ나난ㄴ나ㅏ나나
2021. 5. 24. 12:23
728x90
특이하게도 mobile에서 스크롤을 출력해달라는 요청을 받았다
그래서 찾아본 모바일에서도 스크롤 출력하기!
::-webkit-scrollbar {
-webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
width: 10px;
}
::-webkit-scrollbar:horizontal {
height: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(0, 0, 0, .5);
border-radius: 10px;
border: 2px solid #ffffff;
}
::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #ffffff;
}
728x90