diff options
| author | Mark Otto <[email protected]> | 2011-09-14 08:58:20 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2011-09-14 08:58:20 -0700 |
| commit | dcf6a051e71f73c6f53f36f4a3a9420535f70e42 (patch) | |
| tree | d3b3d4661898b2ffe9d1917ac3edd763ac3ddf7e /docs | |
| parent | 32a690af985661f7d106984dc5ee1c211d0da2ed (diff) | |
| download | bootstrap-dcf6a051e71f73c6f53f36f4a3a9420535f70e42.tar.xz bootstrap-dcf6a051e71f73c6f53f36f4a3a9420535f70e42.zip | |
allow multi-select lists in forms
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/index.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/index.html b/docs/index.html index 41bf39b70..3965da1b7 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1006,6 +1006,18 @@ </div> </div><!-- /clearfix --> <div class="clearfix"> + <label for="multiSelect">Multiple select</label> + <div class="input"> + <select class="medium" multiple="multiple" name="multiSelect" id="multiSelect"> + <option>1</option> + <option>2</option> + <option>3</option> + <option>4</option> + <option>5</option> + </select> + </div> + </div><!-- /clearfix --> + <div class="clearfix"> <label>Uneditable input</label> <div class="input"> <span class="uneditable-input">Some value here</span> |
