Pan*_*wal 3 html css firefox scrollbar angular
我正在尝试修改浏览器滚动条的默认 CSS,它在 Chrome 和 Edge 上工作正常,但在 Firefox 中却不行。有什么方法可以修改firefox浏览器滚动条并使其与Chrome和Edge同步。目前我无法在 Firefox 中为滚动条提供边框半径。
我使用过的代码:
/* Custom Scroll Bar */
/* Works on Firefox */
* {
scrollbar-width: thin !important;
scrollbar-color: #65676a #1e1f22 !important;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
width: 1.2rem !important;
height: 1.2rem !important;
}
*::-webkit-scrollbar-track {
background: #1e1f22 !important;
}
*::-webkit-scrollbar-thumb {
background-color: #65676a !important;
border-radius: 2rem !important;
border: 0.3rem solid #1e1f22 !important;
}
*::-webkit-scrollbar-corner {
background: #1e1f22 !important;
}
Run Code Online (Sandbox Code Playgroud)
另外,我正在使用 Angular Framework,如果有任何 Angular 库可以修改滚动条,请分享。我尝试过 ngx-scrollbar 但遇到一些构建问题。
| 归档时间: |
|
| 查看次数: |
8912 次 |
| 最近记录: |