aboutsummaryrefslogtreecommitdiff
path: root/docs/components/forms.md
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-03-26 11:07:42 -0700
committerMark Otto <[email protected]>2017-03-26 13:23:49 -0700
commit1ad0496724dfdd338614deb4cb4a1087bef1c26f (patch)
tree23e38908cad6197536bf043bad9c903d3233fb96 /docs/components/forms.md
parent1e6902d21f7e3fc226a96351539160433edf3ebf (diff)
downloadbootstrap-1ad0496724dfdd338614deb4cb4a1087bef1c26f.tar.xz
bootstrap-1ad0496724dfdd338614deb4cb4a1087bef1c26f.zip
fix broken fieldset grid, workaround for flexbug 9
Diffstat (limited to 'docs/components/forms.md')
-rw-r--r--docs/components/forms.md42
1 files changed, 22 insertions, 20 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 313835f6f..44cb1ed0d 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -350,26 +350,28 @@ Be sure to add `.col-form-label` to your `<label>`s as well so they're verticall
<input type="password" class="form-control" id="inputPassword3" placeholder="Password">
</div>
</div>
- <fieldset class="form-group row">
- <legend class="col-form-legend col-sm-2">Radios</legend>
- <div class="col-sm-10">
- <div class="form-check">
- <label class="form-check-label">
- <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
- Option one is this and that&mdash;be sure to include why it's great
- </label>
- </div>
- <div class="form-check">
- <label class="form-check-label">
- <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios2" value="option2">
- Option two can be something else and selecting it will deselect option one
- </label>
- </div>
- <div class="form-check disabled">
- <label class="form-check-label">
- <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
- Option three is disabled
- </label>
+ <fieldset class="form-group">
+ <div class="row">
+ <legend class="col-form-legend col-sm-2">Radios</legend>
+ <div class="col-sm-10">
+ <div class="form-check">
+ <label class="form-check-label">
+ <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios1" value="option1" checked>
+ Option one is this and that&mdash;be sure to include why it's great
+ </label>
+ </div>
+ <div class="form-check">
+ <label class="form-check-label">
+ <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios2" value="option2">
+ Option two can be something else and selecting it will deselect option one
+ </label>
+ </div>
+ <div class="form-check disabled">
+ <label class="form-check-label">
+ <input class="form-check-input" type="radio" name="gridRadios" id="gridRadios3" value="option3" disabled>
+ Option three is disabled
+ </label>
+ </div>
</div>
</div>
</fieldset>