在 Webkit 浏览器中,可以使用 CSS 设置滚动条样式:
::-webkit-scrollbar-thumb {
border-radius: 12px;
background: #EEE;
-webkit-transition: background .2s ease-in-out;
}
::-webkit-scrollbar-thumb:hover {
background: #AAA;
}
但是,当我将鼠标悬停在滚动条上时,它似乎-webkit-transition
不适用。它应该表现得像这样还是我的代码中有一些错误?