+ 1
How to disable autofill in csss
if am login and going to any screen, by default text field is displaying with login name, I inspected in browser it's showing autofill enable ,I tried to find out in Google it's showing use autocomplete="false" or autocomplete="off" in form,
3 odpowiedzi
+ 4
What you found is correct. You have to use autocomplete="off" in any input that you do not want it to suggest any of the previously entered values.
+ 2
I see that in your title you wrote "CSS" but this is done at the HTML level. an example would be:
<input type="text" name="my_input" autocomplete="off" >.
0
thanks for your reply kingodx but I tried it, it's not working