1
Joseph0717 OP 版本 121.0.6167.86
|
2
locatez 280 天前 2
是的,现在已经支持 scrollbar-width 和 scrollbar-color ,以前这两个只有火狐支持
来源 https://www.nxrte.com/zixun/42013.html https://developer.mozilla.org/zh-CN/docs/Web/CSS/scrollbar-color https://developer.mozilla.org/zh-CN/docs/Web/CSS/scrollbar-width |
3
0x723b 280 天前 1
并没有,这个正常使用 https://greasyfork.org/zh-CN/scripts/472690
|
4
kebamt 280 天前
```
/* Hide browser scrollbar */ ::-webkit-scrollbar { display:none; } ``` 试试这个? |
5
Chuckle 280 天前
以前的也能正常用,但是 scrollbar 优先级更高,设置了 scrollbar 就会导致原来的::-webkit-scrollbar 失效,scrollbar 太丑陋了,还是只在火狐上用吧(
@-moz-document url-prefix() { 这里面写的样式就只有火狐这类浏览器生效 } |
6
No3ks 280 天前
楼主 是不是变成很细的一条了
|
8
Joseph0717 OP @No3ks @kebamt 这样可以全局生效
::-webkit-scrollbar { width: 8px; height: 8px; } /* Track */ ::-webkit-scrollbar-track { border-radius: 8px; background: @layout-body-background; } /* Handle */ ::-webkit-scrollbar-thumb { border-radius: 8px; background: @primary-color; } |