How to hide autofill safari icon in input field

If you want to hide it completely, you can use the following css tricks. Basically it detect that ‘contacts-auto-fill-button’ and move it away from your input field. Make sure you have ‘absolute:position’ to avoid extra padding from your fields.

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

Leave a Comment