我有一個帶有內容的小列表,我想用max-height
和滾動條做出來,但有一個問題。我想讓它成爲一個自定義滾動條。有我的JSFiddle。我不能設置一個透明的背景和跟蹤顏色帶有透明背景的webkit滾動條
還有就是我的滾動條CSS
.uploaded-files::-webkit-scrollbar{
-webkit-appearance: none;
width: 11px;
}
.uploaded-files::-webkit-scrollbar-track{
margin: 7px 0;
}
.uploaded-files::-webkit-scrollbar-thumb{
border-radius: 12px;
border: 4px solid rgba(255,255,255,0);
background-clip: content-box;
background-color: #a0a0a0;
}
我想打一個滾動條,這樣在此圖像中
任何解決方案?
檢查此主題:http://stackoverflow.com/questions/9251354/css-customized-scroll-bar-in-div – Arkej
@Arkej這沒有幫助我的問題。 –