0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00

per the docs - use <a> instead of <button>

This commit is contained in:
Tom Pietschker 2013-08-27 09:45:38 -04:00
parent f811c1b56c
commit d1f60671c7

View File

@ -558,9 +558,9 @@ base_url: "../"
<div class="bs-example">
<div class="btn-group btn-group-justified">
<button type="button" class="btn btn-default">Left</button>
<button type="button" class="btn btn-default">Middle</button>
<button type="button" class="btn btn-default">Right</button>
<a class="btn btn-default">Left</a>
<a class="btn btn-default">Middle</a>
<a class="btn btn-default">Right</a>
</div>
</div>
{% highlight html %}