반응형
Notice
Recent Posts
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Today
Total
관리 메뉴

오식랜드

[html, css] 스크롤바 숨기기 본문

dev-log/html·css·js

[html, css] 스크롤바 숨기기

개발하는 오식이 2021. 6. 25. 13:30
반응형

.box가 overflow: scroll일 때 생기는 스크롤을 보이지 않게 하는 코드이다!

.box {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}
반응형
Comments