自定义滚动条
/* 自定义滚动条 */
/* .scroll是需要添加滚动条的元素 */
.scroll {
height: 270px;
overflow-y: scroll;
}
.scroll::-webkit-scrollbar {
width: 10px;
height: 1px;
}
.scroll::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #535353;
}
.scroll::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #ededed;
}
自定义滚动条最先出现在Python成神之路。
共有 0 条评论