From bae1bb435cabfffb43140a991ddf2938f4f34d7c Mon Sep 17 00:00:00 2001 From: smokiebacon <37253660+smokiebacon@users.noreply.github.com> Date: Sun, 19 May 2019 12:01:10 -0700 Subject: [PATCH] explained the 'for' attribute a bit more (#32294) --- guide/english/bootstrap/form-inputs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/bootstrap/form-inputs/index.md b/guide/english/bootstrap/form-inputs/index.md index 487af993d7..52bf50c5fd 100644 --- a/guide/english/bootstrap/form-inputs/index.md +++ b/guide/english/bootstrap/form-inputs/index.md @@ -149,7 +149,7 @@ This can be done by utlizing the `for` parameter in the HTML: The label `for` attribute **always** references the input field by its **ID**. This tells the screen reader that this label is definitely for this input field which will minimize confusion for any users who are using -a screen reader to visit a web site. +a screen reader to visit a web site. In the above example, if a user clicks on the actual word "Enter email", then the user will be able to type. If the 'for' attribute was not attached to the label, then if a user clicks on the words 'Enter email,' nothing would happen. The user would have to click on the actual email input field to be able to type. ### More Informations: