Tabindex skipps over Link

107 views Asked by At

My HTML5 tabindex skips over a link element. Even when using tabindex=0, the tabindex skips right over and ignores the <a> element. AFAIK <a> should already be in the tabindex (even without the tabindex attribute) as long as it has a href attribute.

sample code:

<a href="/game" tabindex="0">Hello world!</a>

0

There are 0 answers