Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update autocapitalize props #30734

Merged
merged 17 commits into from
Dec 4, 2023
Merged
4 changes: 2 additions & 2 deletions files/en-us/web/html/element/form/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ This element includes the [global attributes](/en-US/docs/Web/HTML/Global_attrib

- : A nonstandard attribute used by iOS Safari that controls how textual form elements should be automatically capitalized. `autocapitalize` attributes on a form elements override it on `<form>`. Possible values:

- `none`: No automatic capitalization.
- `sentences` (default): Capitalize the first letter of each sentence.
- `none` or `off`: No automatic capitalization.
- `sentences` or `on`: Capitalize the first letter of each sentence.
- `words`: Capitalize the first letter of each word.
- `characters`: Capitalize all characters — that is, uppercase.

Expand Down