Tap targets too small or too close together: what it is, why it matters, and how to fix it
Interactive elements (links, buttons, form inputs) on this page are smaller than 48x48 CSS pixels or are positioned too close together for comfortable tapping on touchscreen devices.
Where this fits: mobile in SEO
Why tap targets too small or too close together hurts your rankings
Small or crowded tap targets cause accidental taps, frustrating mobile users and increasing bounce rates. Google's mobile usability report in Search Console flags this issue, and it is part of the overall page experience assessment that affects mobile rankings. The minimum recommended tap target size is 48x48 CSS pixels with at least 8 pixels of spacing.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Increase the size of interactive elements to at least 48x48 CSS pixels. Add sufficient padding or margin between adjacent tap targets so users can accurately tap their intended target. For inline links within text, increase line height to provide more vertical space between tappable lines.
/* Ensure buttons meet minimum tap target size */
button, .btn, a.nav-link {
min-height: 48px;
min-width: 48px;
padding: 12px 16px;
}
/* Add spacing between adjacent links */
.link-list a {
display: block;
padding: 12px 0;
}Frequently asked questions
What does "Tap targets too small or too close together" mean?
Interactive elements (links, buttons, form inputs) on this page are smaller than 48x48 CSS pixels or are positioned too close together for comfortable tapping on touchscreen devices.
Why does tap targets too small or too close together matter for SEO?
Small or crowded tap targets cause accidental taps, frustrating mobile users and increasing bounce rates. Google's mobile usability report in Search Console flags this issue, and it is part of the overall page experience assessment that affects mobile rankings. The minimum recommended tap target size is 48x48 CSS pixels with at least 8 pixels of spacing.
How do I fix tap targets too small or too close together?
Increase the size of interactive elements to at least 48x48 CSS pixels. Add sufficient padding or margin between adjacent tap targets so users can accurately tap their intended target. For inline links within text, increase line height to provide more vertical space between tappable lines.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the mobile family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects tap targets too small or too close together on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by tap targets too small or too close together, and hands you a ready-made fix task.
Check my site free