diff options
| author | David Haywood Smith <[email protected]> | 2011-08-24 00:05:07 +0100 |
|---|---|---|
| committer | David Haywood Smith <[email protected]> | 2011-08-24 00:05:07 +0100 |
| commit | 70bac36a2233d7f12a9901994238943d4ea50977 (patch) | |
| tree | a74b1e1e521a723e5da5e74aa17e8192e9094f8d /docs | |
| parent | 0bfce13983ada3029d98916b01703d5c0cef2104 (diff) | |
| download | bootstrap-70bac36a2233d7f12a9901994238943d4ea50977.tar.xz bootstrap-70bac36a2233d7f12a9901994238943d4ea50977.zip | |
Fixed empty for fields on select labels
Also added id fields to selects where needed
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/index.html b/docs/index.html index 1669e6123..58be9e8b5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -615,15 +615,15 @@ <fieldset> <legend>Example form legend</legend> <div class="clearfix"> - <label for="">X-Large Input</label> + <label for="xlInput">X-Large Input</label> <div class="input"> <input class="xlarge" id="xlInput" name="xlInput" size="30" type="text" /> </div> </div> <!-- /clearfix --> <div class="clearfix"> - <label for="">Select</label> + <label for="normalSelect">Select</label> <div class="input"> - <select> + <select name="normalSelect" id="normalSelect"> <option>1</option> <option>2</option> <option>3</option> @@ -633,9 +633,9 @@ </div> </div> <!-- /clearfix --> <div class="clearfix"> - <label for="">Select</label> + <label for="mediumSelect">Select</label> <div class="input"> - <select class="medium"> + <select class="medium" name="mediumSelect" id="mediumSelect"> <option>1</option> <option>2</option> <option>3</option> @@ -797,15 +797,15 @@ <fieldset> <legend>Example form legend</legend> <div class="clearfix"> - <label for="">X-Large Input</label> + <label for="xlInput">X-Large Input</label> <div class="input"> <input class="xlarge" id="xlInput" name="xlInput" size="30" type="text" /> </div> </div> <!-- /clearfix --> <div class="clearfix"> - <label for="">Select</label> + <label for="stackedSelect">Select</label> <div class="input"> - <select> + <select name="stackedSelect" id="stackedSelect"> <option>1</option> <option>2</option> <option>3</option> |
