From b21b83b7ead54e6ed0ab130ba77cbcf4a42c6e24 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 16 Apr 2017 14:51:27 -0700 Subject: [PATCH] fixes #22244 by providing more specific guidance on input types --- docs/components/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/components/forms.md b/docs/components/forms.md index 44cb1ed0df..53654fac25 100644 --- a/docs/components/forms.md +++ b/docs/components/forms.md @@ -16,7 +16,7 @@ Bootstrap provides several form control styles, layout options, and custom compo Bootstrap's form controls expand on [our Rebooted form styles]({{ site.baseurl }}/content/reboot/#forms) with classes. Use these classes to opt into their customized displays for a more consistent rendering across browsers and devices. The example form below demonstrates common HTML form elements that receive updated styles from Bootstrap with additional classes. -Remember, since Bootstrap utilizes the HTML5 doctype, **all inputs must have a `type` attribute**. +Be sure to use an appropriate `type` attribute on all inputs (e.g., `email` for email address or `number` for numerical information). {% example html %}