nugawiki

./categories/front-end

CSS 스크롤바 숨기기

업데이트 2026-07-21 조회수

스크롤은 동작하되 스크롤바만 숨김.

HTML

<div class="box" style="width: 200px; height: 100px; overflow-y: scroll;">
  ...
</div>

CSS

.box {
  -ms-overflow-style: none; /* IE, Edge */
  scrollbar-width: none; /* Firefox */
}
.box::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

./comments