Skip to content

Commit

Permalink
Update forms.md
Browse files Browse the repository at this point in the history
I have changed classes in #### Checkboxes and Radio Buttons cause in yours HTML EXAMPLE third checkbox was collapsing to the next line. 
Now it displays proper
  • Loading branch information
adamklepacz authored May 20, 2018
1 parent ec7e1e2 commit 94171dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/pages/forms.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,13 +150,13 @@ Wrap a group of checkboxes or radio buttons in a `<fieldset>` element, and give

```html_example
<div class="grid-x grid-padding-x">
<fieldset class="large-6 cell">
<fieldset class="large-5 cell">
<legend>Choose Your Favorite</legend>
<input type="radio" name="pokemon" value="Red" id="pokemonRed" required><label for="pokemonRed">Red</label>
<input type="radio" name="pokemon" value="Blue" id="pokemonBlue"><label for="pokemonBlue">Blue</label>
<input type="radio" name="pokemon" value="Yellow" id="pokemonYellow"><label for="pokemonYellow">Yellow</label>
</fieldset>
<fieldset class="large-6 cell">
<fieldset class="large-7 cell">
<legend>Check these out</legend>
<input id="checkbox1" type="checkbox"><label for="checkbox1">Checkbox 1</label>
<input id="checkbox2" type="checkbox"><label for="checkbox2">Checkbox 2</label>
Expand Down

0 comments on commit 94171dd

Please sign in to comment.