HTMHell
HTMHell copied to clipboard
<a> isn't tabbable to unless it has the href attribute
The entry #25 A link is a button is a link contains the following text:
You don’t need the
tabindexattribute if you use anatag. HTML hyperlinks are focusable by default.
This is not completely correct.
The a element is only tabbable to if it has the href attribute. Without href, the a element can't be tabbed to by default.
You can try tabbing to the elements in this list and see that the 3rd element doesn't receive focus:
- <a href=#">Element 1</a>
- <a href>Element 2</a>
- <a>Element 3</a>
- <a href>Element 4</a>
I mean it says "hyperlinks", but fair enough. :) Do you want to make the changes and submit a pull request?