scrollbar size

henry·2022년 8월 2일
0
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 640px;
  overflow-y: auto;

// 세로 스크롤 바 = width: n px;  가로: height: n px;

  ::-webkit-scrollbar {
    width: 5px;
    background-color: #e9e9e9;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #c5c2c2;
  }

::-webkit-scrollbar : 스크롤바 영역에 대한 설정
::-webkit-scrollbar-thumb : 스크롤바 막대에 대한 설정
::-webkit-scrollbar-track : 스크롤바 뒷 배경에 대한 설정

스크롤에 모든 것을 담고있는 블로그
https://taegon.kim/archives/9807

0개의 댓글