DEV/css
CSS Scroll 제거
석봉
2024. 6. 21. 17:55
기능은 살리고 스크롤만 제거
기능까지 죽이고 싶은 경우 overflow 속성을 수정하자!
.class-name {
-ms-overflow-style: none;
scrollbar-width: none;
}