Dev Leak
Press ( / )
Subscribe Sign In
home Home popular Popular topics Topics mail Newsletter
Topic: Laravel Laravel Topic: Animation Animation Topic: Docker Docker Topic: Fundamentals Fundamentals Topic: Debugging Debugging Topic: Web Web
home Home popular Popular topics Topics mail Newsletter
Topic: Laravel Topic: Animation Topic: Docker Topic: Fundamentals Topic: Debugging Topic: Web
Fix Button Accessibility in Lighthouse
1 min read

Fix Button Accessibility in Lighthouse

Correcting accessibility errors in Lighthouse using HTML element attributes

March 7, 2023

1k Views
david

david

20 Posts

mail-dark Newsletter

Fix Button Accessibility in Lighthouse

Correcting accessibility errors in Lighthouse using HTML element attributes

david

david

20 Posts

mail-dark Newsletter

March 7, 2023

1k Views

Say Thanks

Buy a Thanks, and directly support content like this.

Card Information

check-green Thank you for supporting! A receipt will be sent to your email

Short Answer

Add text to the button.

<button>Submit</button>

If a button does not have text, add an aria-label attribute to the element.

<button aria-label="Close">&times;</button>

If a button contains an image, use the alt tag on the image element.

When you place an img within a button, the button takes its accessible name from the image.

<button>
  <img src="close.png" alt="close" />
</button>
locked Exclusive Content

πŸš€ Don't Miss Out on the Full Content of this articleπŸš€

Unlock your full potential by gaining access to our exclusive content.

The exclusive content for this article includes:

  • πŸ€” Why is it Important to make Buttons Accessible
  • πŸ“š What is Aria-label?
  • πŸ”§ How does aria-label make buttons accessible?
    • 🏷️ Describing the button's function
    • πŸ”Ž Making the button visible
  • πŸ’‘ Benefits of using aria-label
    • β™Ώ Improved accessibility
    • πŸ“ƒ Compliance with accessibility standards
    • 🌟 Improved user experience

πŸ‘‰ Click the Subscribe button below and gain immediate access to our comprehensive resources! Subscribe now and elevate your skills!

unlocked-white Subscribe for instant access

Related

popular Popular topics Topics mail Newsletter

Footer

Dev Leak

Membership

  • Login
  • Newsletter
  • Subscribe

Support

  • Contact

Pages

  • Home
  • Search
  • Popular
  • Topics

Legal

  • Privacy Policy
  • Terms of Service

© 2025 DevLeak. All rights reserved.