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
'WEB > CSS' 카테고리의 다른 글
수평 스크롤 만들려고 float left 하고 overflow auto 했는데, 스크롤은 안생기고 아래로 내려갈때?? (0) | 2022.02.03 |
---|---|
html button default style 지우기 (0) | 2022.01.27 |
웹폰트 정리 (NotoSanKR) (0) | 2021.02.19 |
CSS로 말줄임 ... 생성하기 (0) | 2020.02.26 |
GRID이용해서 DIV 일정간격으로 분배하기 (0) | 2020.02.21 |