css自定义滚动条

发布时间 2023-10-09 14:43:27作者: IT丶Hatcher

.container {
width: 200px;
height: 150px;
overflow: auto; /* 自动显示滚动条 /
-ms-overflow-style: scrollbar; /
在IE上显示自定义滚动条 */
}

/* 自定义滚动条的样式 */
.container::-webkit-scrollbar {
width: 10px;
height: 10px;
}
.container::-webkit-scrollbar-track {
background-color: #f2f2f2;
}
.container::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 5px;
}
.container::-webkit-scrollbar-thumb:hover {
background-color: #555;
}