How to disable autofill in csss | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 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,

27th Mar 2017, 4:46 AM
deepu
deepu - avatar
3 Respostas
+ 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.
27th Mar 2017, 6:40 AM
CHMD
CHMD - avatar
+ 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" >.
27th Mar 2017, 4:47 PM
CHMD
CHMD - avatar
0
thanks for your reply kingodx but I tried it, it's not working
27th Mar 2017, 7:36 AM
deepu
deepu - avatar