CSS scrollbar custom

이주영·2024년 6월 5일
0
/* 스크롤바의 폭 너비 */
.scrollbar::-webkit-scrollbar {
    width: 10px;  
}

.scrollbar::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60); /* 스크롤바 색상 */
    border-radius: 10px; /* 스크롤바 둥근 테두리 */
    min-height: 50px; /* 스크롤바 막대 최소 높이 */
}

.scrollbar::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, .1);  /*스크롤바 뒷 배경 색상*/
    
    /*스크롤바 뒷 배경 안보이게*/
    box-shadow: none;
    background-color: transparent;
}
profile
웹퍼블리셔 주영

0개의 댓글