diff options
| author | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-02-20 18:56:05 -0800 |
| commit | 143b3db2c9c97b281b0c4ede937d136e9f904651 (patch) | |
| tree | 18d39b205fffbc81b6c0487e8003bdca4a39e9e0 /docs/base-css.html | |
| parent | 331c85724afa7dbf41799967718b16e75f7ca816 (diff) | |
| download | bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.tar.xz bootstrap-143b3db2c9c97b281b0c4ede937d136e9f904651.zip | |
update inline forms to resolve checkbox label with space in it and overlapping content, per #1969
Diffstat (limited to 'docs/base-css.html')
| -rw-r--r-- | docs/base-css.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/base-css.html b/docs/base-css.html index 5a2e12748..86ea85533 100644 --- a/docs/base-css.html +++ b/docs/base-css.html @@ -910,7 +910,7 @@ For example, <code>section</code> should be wrapped as inline. <input type="text" class="input-small" placeholder="Email"> <input type="password" class="input-small" placeholder="Password"> <label class="checkbox"> - <input type="checkbox"> Remember? + <input type="checkbox"> Remember me </label> <button type="submit" class="btn">Sign in</button> </form> @@ -918,6 +918,9 @@ For example, <code>section</code> should be wrapped as inline. <form class="well form-inline"> <input type="text" class="input-small" placeholder="Email"> <input type="password" class="input-small" placeholder="Password"> + <label class="checkbox"> + <input type="checkbox"> Remember me + </label> <button type="submit" class="btn">Go</button> </form> </pre> |
