[CSS] 스크롤바 커스텀하기

하람·2024년 8월 18일

짜치는 기본 스크롤바 이쁘게 커스텀하기

css 스크립트

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-thumb {
  background-color: #2f3542;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background-color: grey;
  border-radius: 5px;
  box-shadow: inset 0px 0px 5px white;
}

브라우저 기본 스크롤바

커스텀 스크롤바

profile
강하고 담대하라 두려워하지 말라

0개의 댓글