chrome, webkit瀏覽器下(IE另外)
核心
::-webkit-scrollbar{}/* 整體樣式 */ ::-webkit-scrollbar-track{}/* 軌道 */ ::-webkit-scrollbar-thumb{}/* 滑塊 */ ::-webkit-scrollbar-button{}/* 兩端小方塊 */ ::-webkit-scrollbar-track-piece{}/* 不包含滑塊的軌道區 */ ::-webkit-scrollbar-corner{}/* 兩端小方塊交匯處 */ ::-webkit-resizer{}/* 如textare改變大小 */
例子

.fixdiv { width: 300px; height: 400px; overflow: scroll; } .bigdiv { width: 500px; height: 800px; background-color: #F5FBFF; } .fixdiv::-webkit-scrollbar { width: 30px; height: 20px; } .fixdiv::-webkit-scrollbar-track { background-color: #0f0; border: 5px solid #fff; } .fixdiv::-webkit-scrollbar-thumb { background-color: #ff0; border: 5px solid #f00; } .fixdiv::-webkit-scrollbar-button { background-color: #00f; }
<div class="fixdiv"> <div class="bigdiv"></div> </div>
其他滾動條樣式:
