SWS-5007 / My-Experience

13 stars 0 forks source link

React, Browser - How to disable auto fill button on Safari Browser? #24

Open SWS-5007 opened 1 year ago

SWS-5007 commented 1 year ago

React, Browser - How to disable auto fill button on Safari Browser?

Codebase

You just need to add this css in your code.

input::-webkit-contacts-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

This works well for me. :-)