繁体   English   中英

webkit-scrollbar 在 chrome 中不起作用

[英]webkit-scrollbar is not working in chrome

我的 css 文件中有以下代码:

.workarea-view-scroll-wrapper::-webkit-scrollbar {
    width:0px;
    background: transparent;
}

当我在 chrome 中打开页面时,chrome 似乎将这些宽度和背景视为“无效的属性值”。 我不确定是什么问题。

附上截图

但是为什么你不去 # (id= ?, 无论如何试试这个:

 /* width */ .workarea-view-scroll-wrapper::-webkit-scrollbar { width: 0.1px !important; } /* Track */ .workarea-view-scroll-wrapper::-webkit-scrollbar-track { background: transparent !important; } /* Handle */ .workarea-view-scroll-wrapper::-webkit-scrollbar-thumb { background: transparent !important; } /* Handle on hover */ .workarea-view-scroll-wrapper::-webkit-scrollbar-thumb:hover { background: transparent !important; }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM