CSS
[CSS] scroll css (스크롤 디자인)
chsr
2020. 6. 24. 14:47
728x90
반응형
<style>
#tempDiv ::-webkit-scrollbar {
width: 5px;
}
/* Track */
#tempDiv ::-webkit-scrollbar-track {
border-radius: 5px;
}
/* Handle */
#tempDiv ::-webkit-scrollbar-thumb {
background: #000;
border-radius: 5px;
}
</style>
<div id="tempDiv">
</div>
728x90
반응형