Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 318 Bytes

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

File metadata and controls

18 lines (14 loc) · 318 Bytes

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. :-)