Some people made Chrome not respecting autocomplete=off
. So it is hard to make forms like: add new user or add new contact, because it gets always (auto) filled with WRONG data.
Now I use something like:
input.password {
text-security: disc !important;
-webkit-text-security: disc !important;
-moz-text-security: disc !important;
}
<input type="text">
But it may not work in other browsers.
Is there any correct method to override this Google Chrome default action?