ThikHome 2020-06-26
::-webkit-scrollbar CSS伪类选择器影响了一个元素的滚动条的样式,仅仅在支持WebKit的浏览器 (例如, 谷歌Chrome, 苹果Safari)可以使用。
.todolist-content::-webkit-scrollbar { width: 5px; height: 10px; /* 整个滚动条*/ } .todolist-content::-webkit-scrollbar-track { background: rgb(239, 239, 239); border-radius: 2px; } .todolist-content::-webkit-scrollbar-thumb { background: #bfbfbf; border-radius: 10px; } .todolist-content::-webkit-scrollbar-thumb:hover { background: #333; } .todolist-content::-webkit-scrollbar-corner { background: #179a16; }
::-webkit-scrollbar
— 整个滚动条.::-webkit-scrollbar-button
— 滚动条上的按钮 (上下箭头).::-webkit-scrollbar-thumb
— 滚动条上的滚动滑块.::-webkit-scrollbar-track
— 滚动条轨道.::-webkit-scrollbar-track-piece
— 滚动条没有滑块的轨道部分.::-webkit-scrollbar-corner
— 当同时有垂直滚动条和水平滚动条时交汇的部分.::-webkit-resizer
— 某些元素的corner部分的部分样式(例:textarea的可拖动按钮).
background-color: blue;background-color: yellow;<input type="button" value="变蓝" @click="changeColorT