본문 바로가기

카테고리 없음

[html/css] 스크롤바 ie, firefox, chrome 에서 기능은 살리고 안보이게 하기

반응형

 

좌측 헤더의 스크롤을 기능은 되지만, 안보이게 숨기기 (css 적용 후 자바스크립트로 body table 스크롤과 동시에 움직이게 할 때 유용)

.box::-webkit-scrollbar {displaynone;}

.box{scrollbar-width: none-ms-overflow-style:none;}

.box::-webkit-scrollbar {display: none;}

.box{scrollbar-width: none; -ms-overflow-style:none;}

 

반응형