How to Fix Tap Targets That Are Too Small
Make buttons and links big enough and far enough apart to hit on a phone.
Tap targets that are too small or too close together cause mis-taps on a phone. The practical minimum is about 44 by 44 CSS pixels with roughly 8 pixels between adjacent targets, and WCAG 2.2 sets 24 by 24 as an absolute floor. Padding the interactive element is the fix — enlarging the text is not.
Why It Matters
Mis-taps are a conversion problem before they are an accessibility one: a link so close to another that reaching it is a lottery costs the visit. It disproportionately affects people with motor impairments and anyone using a phone one-handed.
How to Fix
Find the offenders
Pad the interactive element
Space adjacent targets
Test with a thumb, not a cursor
Code Fix
css.icon-btn { width: 20px; height: 20px; }.icon-btn {
min-width: 44px;
min-height: 44px;
display: inline-flex;
align-items: center;
justify-content: center;
}Platform-Specific Instructions
Theme footers and social icon rows are the usual culprits — often 16-pixel icons with no padding.
Watch icon-only buttons built from a 16px lucide icon: the icon is not the target, the button around it is.
Fixed that one.
Now find the rest.
A free audit ranks every issue on your site by the score points it costs — and links each one straight to its guide.
Run a free audit