有没有办法完全摆脱滚动轨道?还是让它覆盖内容而不是将其推到一边?喜欢 iOS/Lion 滚动条?
以下内容非常接近,但即使轨道是透明的,可滚动区域的内容也会被推过去,并且页面背景会显示出来。
::-webkit-scrollbar {
width:8px;
height:8px;
-webkit-border-radius: 4px;
}
::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
background-color:transparent;
}
::-webkit-scrollbar-thumb {
background-color: rgba(053, 057, 071, 0.3);
width: 6px;
height: 6px;
-webkit-border-radius:4px;
}