diff options
| author | Chris Rebert <[email protected]> | 2014-08-28 19:55:23 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-08-28 19:55:23 -0700 |
| commit | 629fe6329185460f29e684f9fd8679fcb60da3cd (patch) | |
| tree | d81f32d46b230c6acd19417e43fb84748068264c | |
| parent | 551306fe9dde347c19c6b8d91a2e9b2dccf0f4c2 (diff) | |
| download | bootstrap-629fe6329185460f29e684f9fd8679fcb60da3cd.tar.xz bootstrap-629fe6329185460f29e684f9fd8679fcb60da3cd.zip | |
Document that input groups weren't intended for use with <textarea>s
Refs #14362
| -rw-r--r-- | docs/_includes/components/input-groups.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/_includes/components/input-groups.html b/docs/_includes/components/input-groups.html index 4cfddad08..bd29dbe49 100644 --- a/docs/_includes/components/input-groups.html +++ b/docs/_includes/components/input-groups.html @@ -1,11 +1,12 @@ <div class="bs-docs-section"> <h1 id="input-groups" class="page-header">Input groups</h1> - <p class="lead">Extend form controls by adding text or buttons before, after, or on both sides of any text-based input. Use <code>.input-group</code> with an <code>.input-group-addon</code> to prepend or append elements to a single <code>.form-control</code>.</p> + <p class="lead">Extend form controls by adding text or buttons before, after, or on both sides of any text-based <code><input></code>. Use <code>.input-group</code> with an <code>.input-group-addon</code> to prepend or append elements to a single <code>.form-control</code>.</p> <div class="bs-callout bs-callout-danger"> - <h4>Cross-browser compatibility</h4> + <h4>Textual <code><input></code>s only</h4> <p>Avoid using <code><select></code> elements here as they cannot be fully styled in WebKit browsers.</p> + <p>Avoid using <code><textarea></code> elements here as their <code>rows</code> attribute will not be respected in some cases.</p> </div> <div class="bs-callout bs-callout-warning"> <h4>Tooltips & popovers in input groups require special setting</h4> |
