autocomplete="off"
to both the input field and form in Webflow using custom attributes.autocomplete
values (e.g., new-password
), avoid common field names, and optionally insert hidden dummy fields to prevent browser autofill.To disable browser autocomplete on a form input in Webflow, using just the autocomplete="off"
attribute often isn’t enough—especially in Chrome or Safari, which may still suggest saved values. Here’s how to handle it effectively.
autocomplete
AttributeNote: This works better on a <form>
element than on individual inputs. So also try this on the form wrapper.
autocomplete
Valueautocomplete="off"
if they think the input contains sensitive data (e.g., email or password).Example custom attribute on the input:
This often prevents browsers from autofilling the field.
dont-autofill-me
)Some browsers require that this is set at the form level.
Some developers insert fake fields before real fields to “trick” the browser:
Browsers may fill the hidden dummy field and ignore the real one.
To reliably disable autocomplete in Webflow:
autocomplete="off"
to both the input and form.autocomplete
values like new-password
.Browser behavior varies, but combining these techniques increases your chances of suppressing autocomplete reliably.