mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Fixes #8001: add IDs for example inputs
This commit is contained in:
parent
badececcdf
commit
5fcdf1229d
1 changed files with 4 additions and 4 deletions
|
@ -1130,8 +1130,8 @@ For example, <code><section></code> should be wrapped as inline.
|
|||
<form class="bs-example">
|
||||
<fieldset>
|
||||
<legend>Legend</legend>
|
||||
<label>Label name</label>
|
||||
<input type="text" placeholder="Type something…">
|
||||
<label for="exampleInput">Label name</label>
|
||||
<input type="text" id="exampleInput" placeholder="Type something…">
|
||||
<p class="help-block">Example block-level help text here.</p>
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
|
@ -1145,8 +1145,8 @@ For example, <code><section></code> should be wrapped as inline.
|
|||
<form>
|
||||
<fieldset>
|
||||
<legend>Legend</legend>
|
||||
<label>Label name</label>
|
||||
<input type="text" placeholder="Type something…">
|
||||
<label for="exampleInput">Label name</label>
|
||||
<input type="text" id="exampleInput" placeholder="Type something…">
|
||||
<p class="help-block">Example block-level help text here.</p>
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
|
|
Loading…
Add table
Reference in a new issue