Skip to content

Instantly share code, notes, and snippets.

@gzzhanghao
Created August 23, 2023 10:57
Show Gist options
  • Save gzzhanghao/395d83d331618587d88f0a2e0eff1b61 to your computer and use it in GitHub Desktop.
Save gzzhanghao/395d83d331618587d88f0a2e0eff1b61 to your computer and use it in GitHub Desktop.
Prevent iOS safari scroll on focus with pure CSS
input:focus {
animation: prevent-scroll 1ms;
}
@keyframes prevent-scroll {
from {
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment