全局细细滚动条

<style>
/* 宽度 */
::-webkit-scrollbar {
width: 5px;
}

/* 轨道 */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}

/* 滚动条滑块:鼠标悬停 */
::-webkit-scrollbar-thumb:hover {
background: #555;
}
</style>
posted @ 2024-03-06 09:34  小林222  阅读(36)  评论(0)    收藏  举报