This check finds links, buttons, and controls whose rendered target area or spacing may be too small for reliable touch interaction.
Why this matters
Small or tightly packed targets increase accidental activation, especially on mobile screens and for people with limited dexterity. The visible icon can stay compact while padding expands the clickable area.
How to fix it
- Increase the interactive box with padding rather than enlarging only the icon.
- Provide enough space between adjacent controls so a missed tap does not trigger another action.
- Keep inline text links understandable in context; target-size exceptions can apply to text within sentences.
- Check custom controls, pagination, icon buttons, dismiss buttons, and form affordances at mobile breakpoints.
When the finding appears across many URLs, fix the shared component or layout that produces it instead of patching generated HTML page by page. Recheck representative templates and responsive states after deployment so the correction does not create a regression elsewhere.
How to verify the fix
Measure the rendered hit boxes, not only the visible glyphs, and test representative controls on a physical touch device. Confirm focus indicators still follow the enlarged target.
Keep before-and-after evidence for the affected URL, original output, correction, and verification method. If markup changes after load, test consent states, localization, responsive variants, and client-side navigation because the initial HTML and rendered DOM can differ.