css改變滾動條的樣式: ::-webkit-scrollbar { height: 10px; width: 5px; background: rgba(0,0,0,.1) } ::-webkit-scrollbar:hover { background: rgba(0,0,0,.2) } ::-webkit-scrollbar-thumb { background: rgba(0,0,0,.3); -webkit-border-radius: 3px; -moz-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px } ::-webkit-scrollbar-thumb:hover { -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25); -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25); -ms-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25); -o-box-shadow: inset 1px 1px 1px rgba(0,0,0,.25); box-shadow: inset 1px 1px 1px rgba(0,0,0,.25); background-color: rgba(0,0,0,.4) }