aboutsummaryrefslogtreecommitdiff
path: root/css.html
diff options
context:
space:
mode:
authorKevin Suttle <[email protected]>2013-08-24 11:32:23 -0400
committerKevin Suttle <[email protected]>2013-08-24 16:31:15 -0400
commitdd9c15273c4aceeada22754ee9a0af2aae7eb8ea (patch)
tree55bdb5858c045c4d919a547c72245a3e2bb63e0b /css.html
parent0add7700adc3ccdef68b7a88ec3537b5e523bf9a (diff)
downloadbootstrap-dd9c15273c4aceeada22754ee9a0af2aae7eb8ea.tar.xz
bootstrap-dd9c15273c4aceeada22754ee9a0af2aae7eb8ea.zip
Add even more role="button" attributes
Missed the <a class="btw" in my regex search
Diffstat (limited to 'css.html')
-rw-r--r--css.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/css.html b/css.html
index a45c71a80..6f6526e22 100644
--- a/css.html
+++ b/css.html
@@ -2153,13 +2153,13 @@ For example, <code>&lt;section&gt;</code> should be wrapped as inline.
<h2 id="buttons-tags">Button tags</h2>
<p>Use the button classes on an <code>&lt;a&gt;</code>, <code>&lt;button&gt;</code>, or <code>&lt;input&gt;</code> element.</p>
<form class="bs-example">
- <a class="btn btn-default" href="#">Link</a>
+ <a class="btn btn-default" href="#" role="button">Link</a>
<button class="btn btn-default" type="submit">Button</button>
<input class="btn btn-default" type="button" value="Input">
<input class="btn btn-default" type="submit" value="Submit">
</form>
{% highlight html %}
-<a class="btn btn-default" href="#">Link</a>
+<a class="btn btn-default" href="#" role="button">Link</a>
<button class="btn btn-default" type="submit">Button</button>
<input class="btn btn-default" type="button" value="Input">
<input class="btn btn-default" type="submit" value="Submit">