0
我已經完成了下面的代碼來自定義我的滾動條,但我需要將箭頭放在按鈕中,我該如何做到這一點?使用CSS自定義滾動條
::-webkit-scrollbar {
width: 50px;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
display: block;
height: 50px;
}
::-webkit-scrollbar-button:vertical:decrement,
::-webkit-scrollbar-button:vertical:increment {
background-color: #ccc;
}
請參閱本:http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/quick-tip-styling-scrollbars-to-match-your-ui -設計/ –