autocomplete="off"
to input fields in Webflow.name
and id
to non-standard values to avoid browser-triggered autofill.email
or password
, and test changes in Incognito mode for accuracy.To disable autocomplete on a form input in Webflow, using the autocomplete="off"
attribute is correct—but modern browsers often ignore this for specific input types. Here's how to improve the reliability.
off
in the dropdown. If the option isn't visible, proceed to the next step with custom attributes.autocomplete
off
(Make sure it’s lowercase and without quotes)name
or id
being recognized by browsers.name="no-autofill-email"
instead of email
name="user_input_xyz"
instead of username
email
, name
, username
, password
—browsers auto-apply autocomplete to these.email
, tel
, or password
often trigger autocomplete regardless of the autocomplete value.type="text"
with unique names if blocking autocomplete is essential.To disable autocomplete in Webflow, add a custom attribute autocomplete="off"
, rename fields to avoid common input names, and test in private mode. Due to browser behavior, this isn't always 100% reliable, but these steps maximize your chances.