Accessibility Checklist: Buttons

Bobby Bailey

Bobby Bailey

Jump to Article

How to Ensure Buttons Are Usable for Everyone

Buttons are essential interactive elements, but if not designed correctly, they can become barriers for people using assistive technologies. Use this checklist to ensure buttons are fully accessible.

10-Point Accessible Buttons Checklist

Number One: Buttons have clear, descriptive text

Button text should explain what will happen when clicked (e.g., "Submit Form" instead of "Click Here"). Avoid using only icons without accessible labels.

Number Two: Buttons are focusable and keyboard accessible

People can navigate to buttons using the Tab key and activate them with Enter or Space. Ensure buttons are not inside non-focusable <div> elements.

Number Three: Buttons are properly labeled for screen readers

If a button contains only an icon, use aria-label to provide a text alternative.
Example:

<button aria-label="Search">🔍</button>

Number Four: Ensure button styles look interactive

Buttons should be visually distinct from static content. Use consistent colors, borders, or shadows to indicate interactivity.

Number Five: Do not use <div> or <span> as buttons

Use the native <button> element instead of styling <div> or <span> to look like a button. If non-button elements are unavoidable, ensure they have role="button" and keyboard functionality.

Number Six: Buttons provide clear visual feedback

When clicked, buttons should change appearance to confirm the action. Use aria-pressed="true" for toggle buttons.

Number Seven: Ensure buttons have sufficient color contrast

Button text should have a 4.5:1 contrast ratio against its background. The button itself should stand out from surrounding content.

Number Eight: Disabled buttons are clearly indicated

Visually disabled buttons should look different (e.g., grayed out) and not be focusable. Do not remove buttons entirely if they are temporarily disabled.

Number Nine: Buttons should be large enough to activate easily

Ensure buttons have a minimum target size of 44x44 pixels. Avoid making clickable areas too small, especially on mobile devices.

Number Ten: Test buttons with assistive technologies

Use screen readers to confirm button labels are announced correctly. Navigate using only a keyboard to ensure full functionality.

Support my work in accessibility

Creating accessible content takes time, care, and deep testing — and I love every minute of it. From writing blog posts to doing live audits and building checklists, everything I create is designed to make the digital world more inclusive.If something here helped you — whether it saved you time, taught you something new, or gave you insight into accessibility — consider supporting my work.

You can buy me a coffee to help keep this platform going strong:

Buy Me a Coffee

Every coffee goes toward:

  • Creating new articles with accessibility tips, tools, and testing methods
  • Covering hosting, software, and assistive tech costs
  • Supporting free education for designers, developers, and testers
  • Making a meaningful difference for people living with disabilities

Thanks for being part of this mission to build a more accessible web — one page at a time.