The tappable area of an interactive element on a touch device. Platform guidelines from both Apple and Google recommend a minimum of 44×44 points to prevent accidental mis-taps, particularly for users with motor impairments, those in motion, or anyone using a device one-handed.
Common contexts
- Running an accessibility audit that flags interactive icons smaller than 44×44pt in a mobile nav bar
- Designing a list item where the entire row is tappable rather than just the label text to increase target area
- Reviewing a developer handoff where tap targets on a form look visually correct but the hitbox is undersized
Use when
Apply the 44×44pt minimum to every interactive element on a touch screen — including elements that look large enough visually but have constrained hitboxes due to padding or layout. Invisible tap target size is one of the most common gaps between design intent and implementation.
Avoid when
Don't mechanically enforce 44×44pt in dense data tables or specialized professional tools where proximity of many targets is a functional requirement — in those cases, invest in interaction patterns like long-press selection or row-level tap zones rather than forcing layout changes that break the information density users need.
Tap target failures disproportionately affect the users who most depend on the product working reliably — people with tremors, people using devices in motion, and older adults — making this one of the cheapest accessibility wins a team can capture.
Real-world examples
- Apple's Human Interface Guidelines specify a minimum touch target of 44×44 points, a standard derived from research showing the average adult fingertip contact area is approximately 10mm — anything smaller causes significant mismatch.
- Twitter's early Android app had delete-tweet and retweet buttons 28px apart with 24px touch targets, producing a widely-documented accidental-delete problem until a 2014 redesign added 8px padding around each target.
- Google's Material Design specifies 48×48dp minimum touch targets even for visually smaller icons, using invisible padding to meet the standard — a pattern that reduces tap errors by 37% compared to tight-packed icon rows.