Hiding the automatically added enter (user) button in Safari 10 (?)

Any idea how I can hide this annoying input / button icon in Safari via CSS? I have no idea what this new icon means, because for me it has no functionality.

thanks a million Thomas

+5
source share
3 answers

I solved this problem this way

input:focus::-webkit-contacts-auto-fill-button{ opacity: 0; } 
+6
source

I noticed that the icon appears if there is no blank label. A possible solution is to remove all text from the label and put it as a css property using "after", for example:

HTML

 <label></label> <input> 

CSS

 label:before { content: 'some text for label'; } 
0
source

The good news is that it seems to have disappeared in 10.1.1

0
source

All Articles