DEV Community

Cover image for How to make your fancy SVG button accessible
Jonathan Speek
Jonathan Speek

Posted on

How to make your fancy SVG button accessible

You may very well find yourself one day having to build some crazy button a designer dreamed-up. You might start reaching for that good old <div>, but easy there big-shifter 🚚  —  let’s try and use that <button> element you’re avoiding 😬

We’ll start by simply grabbing the code for an SVG icon that we want to use. I quickly made a Chemex icon you can use here (I love me some coffee ☕️). Paste that between a <button> tag in your HTML like so (the SVG code will be pretty lengthy).

Initial <button> with SVG code inside

We want this button stripped of its default styling, so let’s give the button an “id” and we’ll target it with some CSS.

Strip the default styling of the <button> so we can make it better 💁

Give the button a good width/height that is larger than our SVG — this will help the visibility of the outline. Speaking of, make sure the contrast ratio between your outline color and the background color passes this. Get rid of that pesky border and background, make sure the cursor is set to pointer.

At this point, you have a clickable button that, when clicked, shows the default outline your browser has chosen for focus states. Let’s change that and make it better.

Giving the button some focus 🤓

Now when we click or tab to our button, we get a cool little dashed outline that lets us know where we’re focused.

We also want to ensure that the SVG itself does not get an outline if clicked. And we want to make certain Firefox doesn’t add its default dotted outline. While we’re at it, we can give the SVG a little hover effect.

Adding our flavorful hover effect 😺

Now we can get to the cool parts 😎 We don’t want to annoy or confuse our screen reader users with our button. So we need a good short description of what to expect. You would also typically want visual users to have an idea of what it is they’re clicking on as well, for now let’s keep ’em guessing...

We can easily achieve this by putting a <span> element around the text in our button and styling it out of view. Make sure not to set display to “none”, as this will also prevent our screen readers for accessing it.

Telling our screen reader users what they’re clicking on 💬

Lastly, let’s make sure we’ve:

  • hidden the SVG from anyone using assistive technology and
  • set the tabindex to “0” so that the browser uses the expected tab order for any keyboard users.

Setting the proper tab order ⌨️

You should now have a really accessible button that you can be proud of 💥Besides patting yourself on the back — do it now — going forward you now have some reusable patterns that you can implement that help make the web just a little more accessible 😘

Here’s a link to the CodePen example, feel free to fork your own copy 🍴

Thanks for reading. If you have some knowledge to drop on accessibility, be sure to leave a comment!

Top comments (1)

Collapse
 
energeticpixels profile image
Anthony Jackman

I wonder if you could use this same idea but with an svg that comes in as an external Sprite sheet. Of course, spritesheet would have to be loaded about the same time as the css file. Maybe before css file?