기본 콘텐츠로 건너뛰기

웹브라우저의 스크롤바 감추기

웹브라우저의 스크롤은 정상적으로 작동하지만, 스크롤은 감추는 CSS 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 웹브라우저의 스크롤바 감추기 */
body {
    -ms-overflow-style: none; 
}
::-webkit-scrollbar {
     display: none; 
} 
/* 원하는 요소(예: 클래스)만 스크롤바 감추기 */
.class {
    -ms-overflow-style: none; 
}
.class::-webkit-scrollbar {
    display: none;
}
cs

댓글

주간 가장 인기 있는 글