aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-02-20 18:56:05 -0800
committerMark Otto <[email protected]>2012-02-20 18:56:05 -0800
commit143b3db2c9c97b281b0c4ede937d136e9f904651 (patch)
tree18d39b205fffbc81b6c0487e8003bdca4a39e9e0 /docs/base-css.html
parent331c85724afa7dbf41799967718b16e75f7ca816 (diff)
downloadbootstrap-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.html5
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, &lt;code&gt;section&lt;/code&gt; 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, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
&lt;form class="well form-inline"&gt;
&lt;input type="text" class="input-small" placeholder="Email"&gt;
&lt;input type="password" class="input-small" placeholder="Password"&gt;
+ &lt;label class="checkbox"&gt;
+ &lt;input type="checkbox"&gt; Remember me
+ &lt;/label&gt;
&lt;button type="submit" class="btn"&gt;Go&lt;/button&gt;
&lt;/form&gt;
</pre>