We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
以官网demo为例:https://gridmanager.lovejavascript.com/demo/index.html#demo-fixedCode
The text was updated successfully, but these errors were encountered:
.table-div { /* scrollbar-width: thin; */ /* scrollbar-color: #e1e1e1 #f3f3f3; */ }
研究发下是这两个属性导致的,Chrome最近更新了滚动条的默认行为。 如果使用上面这两个属性设置滚动条,默认情况下滚动条会自动隐藏,除非你进行了滚动行为。
.table-div::-webkit-scrollbar-thumb { background-color: #f3f3f3; border-radius: 10px; } .table-div::-webkit-scrollbar { display: block; width: 12px; }
加上这两行,强制显示滚动条
Sorry, something went wrong.
No branches or pull requests
以官网demo为例:https://gridmanager.lovejavascript.com/demo/index.html#demo-fixedCode

The text was updated successfully, but these errors were encountered: