1. Buttons with no readable text
CriticalAnnounced as "button" with nothing else. Close buttons, hamburger menus and icon toolbars are where this almost always shows up.
How to fix it. Add visible text, or aria-label when the control really is icon-only. Make sure any icon inside is marked aria-hidden="true" so it is not announced alongside.
Instead of
<button><span class="icon-close"></span></button>
Do this
<button aria-label="Close dialog">
<span class="icon-close" aria-hidden="true"></span>
</button>
One fix, 8 pages
The same element fails in the same place on
8 of the pages tested, which means it lives in a
shared template or component. Changing it once clears all of them.
.icon-btn:nth-child(n)
Show the failing elements (4 of 49)
| Selector | Markup |
|---|---|
.icon-btn:nth-child(1) |
<button class="icon-btn"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M11 4a7 7 0 1 0 0 14 7 7 0 0 0 0-14zm9 16l-4.5-4.5" fill="none" stroke="currentColor" stroke-width="2"></path></svg></button> |
.icon-btn:nth-child(2) |
<button class="icon-btn"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8zm-7 8a7 7 0 0 1 14 0" fill="none" stroke="currentColor" stroke-width="2"></path></svg></button> |
.utility > .icon-btn:nth-child(3) |
<button class="icon-btn"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M3 4h2l2.6 11h9.8l2.1-8H6.4M9 20a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm8 0a1 1 0 1 0 0-2 1 1 0 0 0 0 2z" fill="none" stroke="currentColor" stroke-width="2"></path></svg></button> |
article:nth-child(1) > .body > .icon-btn |
<button class="icon-btn"><svg viewBox="0 0 24 24" aria-hidden="true"><path d="M12 21s-7-4.6-7-9.5A3.5 3.5 0 0 1 12 8a3.5 3.5 0 0 1 7 3.5C19 16.4 12 21 12 21z" fill="none" stroke="currentColor" stroke-width="2"></path></svg></button> |
Pages affected
- https://sitepunchlist.com/demo/shop.html — 9 instances
- https://sitepunchlist.com/demo — 7 instances
- https://sitepunchlist.com/demo/journal.html — 3 instances
- https://sitepunchlist.com/demo/about.html — 3 instances
- https://sitepunchlist.com/demo/contact.html — 3 instances
- https://sitepunchlist.com/demo/product-harbour-mug.html — 3 instances
- https://sitepunchlist.com/demo/product-linen-apron.html — 3 instances
- https://sitepunchlist.com/demo/product-oak-board.html — 3 instances
- https://sitepunchlist.com/demo/product-copper-pot.html — 3 instances
- https://sitepunchlist.com/demo/product-glass-carafe.html — 3 instances
- https://sitepunchlist.com/demo/product-wool-throw.html — 3 instances
- https://sitepunchlist.com/demo/journal-oak.html — 3 instances
- https://sitepunchlist.com/demo/journal-copper.html — 3 instances
Engine rule button-name.
Rule documentation.