Skip to content

Instantly share code, notes, and snippets.

@SteveBarnett
Last active March 12, 2020 00:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SteveBarnett/6536b03facd470b059fe7d7f11974cbe to your computer and use it in GitHub Desktop.
Save SteveBarnett/6536b03facd470b059fe7d7f11974cbe to your computer and use it in GitHub Desktop.
Link and Button examples
<!-- yes! -->
<button type="button">Show messages</button>
<button type="button">Show messages <img src="/icons/messages.png" alt="" /></button>
<button type="button"><img src="/icons/messages.png" alt="Show messages" /></button>
<button type="button" disabled aria-describedby="id-of-a-paragraph-explaining-why">Show messages</button>

<!-- please no -->
<button type="button"><img src="/icons/messages.png" /></button> <!-- no accessible name -->
<button type="button"><div>Show messages</div></button> <!-- divs aren't valid inside buttons -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment