C2.14.1Expanded hit area for small iconsdesign

Small icons should expand their hit area to the minimum touch size

Aliases: expanded hit area · small icon · touch target

What it is

Visually compact icons should expand their hit area to a minimum touch size. The graphic can remain small while a transparent interactive region provides fingertip tolerance, separating visual information density from input reachability.

Why it happens

Rendering boundaries determine what people see; hit-testing boundaries determine what coordinates invoke action. Larger areas absorb touch bias and finger size, but implementing this correctly is not simply "add a few pixels on every side" — if an icon sits right against the screen edge or another icon, expanding symmetrically in all directions either wastes part of the expansion off-screen or expands straight into a neighbour's territory, creating overlap. A workable approach treats expansion as an allocation problem constrained by surrounding space: preferentially spend the expandable margin on whichever side is genuinely open right now, and expand little or not at all on the side closer to a neighbour or edge. This also means the same icon component, appearing at different places in an interface, will not always have the same hit-area shape or size — it depends on how much room happens to be free nearby at that spot.

Where it stops holding

Expansion cannot replace recognizable icons, labels, or layout, and cannot cross neighbours into overlap. It suits independent low-ambiguity controls; dense destructive actions need more spacing, grouping, or confirmation.

Applying it

  • Define a minimum transparent hit area for small icons and implement it consistently at component level, computing the expansion amount dynamically from locally available space rather than hard-coding one global margin.
  • Test actual touch for blank-area taps, edge hits, and neighbour conflicts.
  • How to check: spot-check the same icon component's actual expansion direction and amount at different places in the interface, confirming it genuinely reflects locally available space rather than applying a fixed constant that ignores surrounding layout — a fixed constant wastes room where space is open and creates overlap where it is crowded.

Related

  • Same group: C2.14.2 Expanded hit areas must not overlap each other · C2.14.3 Hit-area expansion cannot replace visual discernibility
  • Nearby: C2.02 Minimum touch target size · C2.03 Minimum touch-target spacing
  • Search terms: hit area · touch target · small icon

Cards in the same group

Quick Actions

Share

Share this page

ios_share

https://hci.top/en/handbook/C2.14.1