自定义滚动条样式

#area_data::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
#area_data::-webkit-scrollbar-thumb {
    background-color: rgba(235,87,86,.73);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

自定义滚动条样式_第1张图片   ——————变为——————>自定义滚动条样式_第2张图片

想了解更多滚动条样式介绍的可以看这个文章:https://www.lyblog.net/detail/314.html

你可能感兴趣的:(html,滚动条,自定义滚动条)