Add even more role="button" attributes
Missed the <a class="btw" in my regex search
This commit is contained in:
parent
0add7700ad
commit
dd9c15273c
12 changed files with 30 additions and 30 deletions
4
css.html
4
css.html
|
|
@ -2153,13 +2153,13 @@ For example, <code><section></code> should be wrapped as inline.
|
|||
<h2 id="buttons-tags">Button tags</h2>
|
||||
<p>Use the button classes on an <code><a></code>, <code><button></code>, or <code><input></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">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue