본문 바로가기

명사 美 비격식 (무리 중에서) 아주 뛰어난[눈에 띄는] 사람[것]

HTML·CSS

스크롤 커스텀 css

지금 이 블로그에 적용된 스크롤 css이다.

*::-webkit-scrollbar {
    width: 16px;  /* 스크롤바의 너비 */
}
*::-webkit-scrollbar-thumb {
    height: 30px; /* 스크롤바의 길이 */
    background: #a2a2a269; /* 스크롤바의 색상 */
		background-clip: padding-box;
    border-radius: 10px; /* 여백을 주고싶을때 */
		border: 5px solid transparent; /* 여백을 주고싶을때 */
        cursor: pointer;
}
*::-webkit-scrollbar-track {
    background: rgba(102, 102, 102, 0.028);  /*스크롤바 뒷 배경 색상*/
}