css 스크롤 바 overflow-y && 스크롤 바 커스텀

Youje0·2022년 11월 21일
0
body{
overflow-y : scroll;
}


body::-webkit-scrollbar {
    width: 8px;  /* 스크롤바의 너비 */
}

body::-webkit-scrollbar-thumb {
    height: 30%; /* 스크롤바의 길이 */
    background: #217af4; /* 스크롤바의 색상 */
    
    border-radius: 10px;
}

body::-webkit-scrollbar-track {
    background: rgba(33, 122, 244, .1);  /*스크롤바 뒷 배경 색상*/
}

body에 overflow를 주고

밑에 코드로 커스텀

profile
ㅠㅠ

0개의 댓글