diff --git a/docs/input_control.html b/docs/input_control.html index eb680c2..e86b953 100644 --- a/docs/input_control.html +++ b/docs/input_control.html @@ -161,7 +161,7 @@
Forms are structured the same way you would structure a normal form in HTML5. Simply create a root <form>
element and add your <input>
elements inside. Link them to <label>
elements for ease of acces and you are pretty much set. We highly recommend using the <fieldset>
and <legend>
elements to annotate your forms as well, but you can skip them if you wish.
Forms are structured the same way you would structure a normal form in HTML5. Simply create a root <form>
element and add your <input>
elements inside. Link them to <label>
elements for ease of access and you are pretty much set. We highly recommend using the <fieldset>
and <legend>
elements to annotate your forms as well, but you can skip them if you wish.
Forms are inline by default. Use the .input-group
class on a <div>
wrapping inside it an <input>
and <label>
pair to make sure they always display together in one line. You can make your .input-group
s respond to viewport changes, by adding the .fluid
class to them. Finally, if you want to create aligned forms with a preset layout, you can utilize the grid module's rows and columns.
<form> diff --git a/docs/v2/DEVLOG.md b/docs/v2/DEVLOG.md index 851eecd..eee1ae0 100644 --- a/docs/v2/DEVLOG.md +++ b/docs/v2/DEVLOG.md @@ -1185,3 +1185,4 @@ - Added a note in `core` doc to tell people about fluid typography. - Fixed a typo in `tab`. - Fixed a typo in `table`. +- Fixed a typo in `input_control`.