Skip to content

Instantly share code, notes, and snippets.

@kennethlarsen
Created July 3, 2017 18:42
Show Gist options
  • Save kennethlarsen/72ce7f9efd2f0c610984594f0c125990 to your computer and use it in GitHub Desktop.
Save kennethlarsen/72ce7f9efd2f0c610984594f0c125990 to your computer and use it in GitHub Desktop.
<!-- Accesible button as a div -->
<div tabindex="0"
role="button"
id="action">
Buy stuff
</div>
<!-- Accesible toggle button as an <a>-element -->
<a tabindex="0"
role="button"
id="toggle"
aria-pressed="false">
Mute
<svg aria-hidden="true">
<use xlink:href="images/mute.svg#icon-sound">
</svg>
</a>
<!-- Native and accesible button -->
<button type="button" aria-pressed="false" onclick="handleBtnClick(event)">
Call to action
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment