2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-24 14:04:09 +03: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
+3 -3
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 %}