Page

[css]收藏简易的滚动条美化样式

692Anson17-09-22



.detailList{
    height:28em;
    overflow: auto;
}

.detailList::-webkit-scrollbar {
    width: 5px;
    background: transparent;
}

.detailList::-webkit-scrollbar-button {
    display: none;
}

.detailList::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px 2px;
}


滚动条效果图对比:


blob.png



来自ansion博客 

http://www.tp0.top

2017-09-22 14:00:37