From babd589fdcaa64d9e414a264f7e4be73168a204c Mon Sep 17 00:00:00 2001 From: squidnerd Date: Thu, 3 Jan 2019 17:12:34 -0600 Subject: [PATCH] Corrected some spelling/grammar mistakes (#27354) --- guide/english/bootstrap/forms/index.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/guide/english/bootstrap/forms/index.md b/guide/english/bootstrap/forms/index.md index ec127aedd5..58522f73db 100644 --- a/guide/english/bootstrap/forms/index.md +++ b/guide/english/bootstrap/forms/index.md @@ -4,12 +4,13 @@ title: Forms ## Forms --- -Bootstrap framework provides a form feature which you can use to create beautiful html forms easily. Using the bootstrap form gives each individual form element a unified global style. Bootstrap form adds the right spacing and look to each element. +Bootstrap framework provides a form feature which you can use to create beautiful html forms easily. Using the Bootstrap form gives each individual form element a unified global style. Bootstrap form adds the right spacing and look to each element. -Each bootstrap form element should have a class *form-control*. This class is how bootstrap knows which elements to style. All textual elements like **input**, **textarea** and **select** that have *form-control* class will have 100% width by default. There are two types of Bootstrap forms, which are: +Each Bootstrap form element should have a class *form-control*. This class is how Bootstrap knows which elements to style. All textual elements like **input**, **textarea** and **select** that have the *form-control* class will have 100% width by default. -* Inline form - creates the form on a single line. Useful for login forms in a nav bar -* Horizontal form - creates a form with each element in a different row +There are two types of Bootstrap forms, which are: +- Inline form - creates the form on a single line. Useful for login forms in a nav bar +- Horizontal form - creates a form with each element in a different row ## Example of a basic form @@ -132,7 +133,7 @@ Take the following simple form: ``` -Individual form fields and the associated label should be wrapped in a `
` with a class of `form-group`. One exception to this is when using checkbox field where `form-check` should be used instead of `form-group`. +Individual form fields and the associated labels should be wrapped in a `
` with a class of `form-group`. One exception to this is when using a checkbox field where `form-check` should be used instead of `form-group`. The `` tag should be given a class of `form-control`. @@ -179,6 +180,5 @@ In combination with Bootstrap's predefined grid classes to align labels and grou ![Horizontal Form](https://github.com/TroyB12/Pictures/blob/master/Horizontal%20Form.PNG) -#### More Information -[Bootstrap Forms](https://getbootstrap.com/docs/4.1/components/forms/) - +## Additional Resources +- [Bootstrap Forms](https://getbootstrap.com/docs/4.1/components/forms/)