From 7e44e13b21bbf161fcacf4b4748a12abeb124139 Mon Sep 17 00:00:00 2001 From: Smruti Ranjan Rana Date: Wed, 17 Apr 2019 17:00:28 +0530 Subject: [PATCH] Added 'Range' example, Update 'More Informations' (#27593) --- guide/english/bootstrap/form-inputs/index.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/guide/english/bootstrap/form-inputs/index.md b/guide/english/bootstrap/form-inputs/index.md index b664c4c8b8..487af993d7 100644 --- a/guide/english/bootstrap/form-inputs/index.md +++ b/guide/english/bootstrap/form-inputs/index.md @@ -11,6 +11,7 @@ Bootstrap supports the following form controls: 3. checkbox 4. radio 5. select +6. range ## Example Code Snippets @@ -117,6 +118,21 @@ The following example contains a dropdown list (select list): ``` +#### 6. Range + +Select lists are used if you want to allow the user to pick from multiple options. + +The following example contains a dropdown list (select list): + +```html +
+
+ + +
+
+``` + ## How to make Bootstrap Inputs Accessible Input fields should have labels or some other form of identifier such as WAI-ARIA tags to meet the Web @@ -136,6 +152,7 @@ that this label is definitely for this input field which will minimize confusion a screen reader to visit a web site. -### More Information: +### More Informations: +[Forms - Bootstrap](https://getbootstrap.com/docs/4.1/components/forms/) Code examples are from [W3Schools - Bootstrap Form Inputs](https://www.w3schools.com/bootstrap/bootstrap_forms_inputs.asp).