1. 程式人生 > >scroll滾動條美化

scroll滾動條美化

/自定義滾動條/
.scrollbar {
overflow-y: auto;
}
.scrollbar::-webkit-scrollbar {
width: 6px;
background-color: rgba(217,217,217,0.3);
}
.scrollbar::-webkit-scrollbar-thumb {
background-color: rgba(217,217,217,0.3);
border-radius: 6px;
}
.scrollbar::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(217,217,217,0.3);
background-color: #fff;
}
轉載自

http://blog.csdn.net/hanshileiai/article/details/40398177