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
Hiding Webkit scrollbar cannot be reverted. reference
::-webkit-scrollbar { display: none; }
Therefore, the Webkit scrollbar should be hidden only when it satisfies
pointer: fine
The following code works in Chrome and Firefox, but not in macOS Safari1.
.scroller-js { scrollbar-width: none; } @media not (pointer: fine) { .scroller-js::-webkit-scrollbar { display: none; } } @media (pointer: fine) { .scroller-js:not(:hover)::-webkit-scrollbar { display: none; } .scroller-js:hover { scrollbar-width: auto; } }
16.4(18615.1.26.110.1) ↩
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hiding Webkit scrollbar cannot be reverted. reference
Therefore, the Webkit scrollbar should be hidden only when it satisfies
pointer: fine
device.The following code works in Chrome and Firefox, but not in macOS Safari1.
Footnotes
16.4(18615.1.26.110.1) ↩
The text was updated successfully, but these errors were encountered: