aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-02-11 17:12:32 -0800
committerMark Otto <[email protected]>2012-02-11 17:12:32 -0800
commita497e9010a5fcf4fce7e7112a0d3f32da57e8adb (patch)
tree9acda228e2840541b93c7c9fad53399d6534fb07 /docs/base-css.html
parent5a3dfb72bfcf1859690c76a8ddb8457eb962bdb3 (diff)
downloadbootstrap-a497e9010a5fcf4fce7e7112a0d3f32da57e8adb.tar.xz
bootstrap-a497e9010a5fcf4fce7e7112a0d3f32da57e8adb.zip
make button examples button element and add upgrade note on tooltip positions per #1532
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index 678504b72..2ee0f2d29 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -1301,23 +1301,23 @@ For example, &lt;code&gt;section&lt;/code&gt; should be wrapped as inline.
<h3>Multiple sizes</h3>
<p>Fancy larger or smaller buttons? Add <code>.btn-large</code> or <code>.btn-small</code> for two additional sizes.</p>
<p>
- <a href="#" class="btn btn-large btn-primary">Primary action</a>
- <a href="#" class="btn btn-large">Action</a>
+ <button class="btn btn-large btn-primary">Primary action</button>
+ <button class="btn btn-large">Action</button>
</p>
<p>
- <a href="#" class="btn btn-small btn-primary">Primary action</a>
- <a href="#" class="btn btn-small">Action</a>
+ <button class="btn btn-small btn-primary">Primary action</button>
+ <button class="btn btn-small">Action</button>
</p>
<br>
<h3>Disabled state</h3>
<p>For disabled buttons, use <code>.btn-disabled</code> for links and <code>:disabled</code> for <code>&lt;button&gt;</code> elements.</p>
<p>
- <a href="#" class="btn btn-large btn-primary disabled">Primary action</a>
- <a href="#" class="btn btn-large disabled">Action</a>
+ <a href="#" class="btn btn-large btn-primary disabled">Primary link</a>
+ <a href="#" class="btn btn-large disabled">Link</a>
</p>
<p>
- <button class="btn btn-large btn-primary disabled" disabled="disabled">Primary action</button>
- <button class="btn btn-large" disabled>Action</button>
+ <button class="btn btn-large btn-primary disabled" disabled="disabled">Primary button</button>
+ <button class="btn btn-large" disabled>Button</button>
</p>
</div>
<div class="span4">