Last active
May 9, 2023 01:31
-
-
Save jeroenvisser101/9254cf27df85cf1c853aee17e4b49766 to your computer and use it in GitHub Desktop.
Hide Safari contacts auto-fill when [autocomplete="off"]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[autocomplete="off"]::-webkit-contacts-auto-fill-button { | |
visibility: hidden; | |
display: none !important; | |
pointer-events: none; | |
height: 0; | |
width: 0; | |
margin: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It also works for me!