The time it takes to hit a target depends on how far away it is and how big it is. This is Fitts's Law, formalised by psychologist Paul Fitts in 1954 through a series of controlled experiments with physical pointing tasks. The mathematical model — T = a + b × log2(2D/W) — precisely predicts movement time from distance (D) and target width (W). Decades of HCI research have validated that the model applies equally to mouse movements, touch gestures, and stylus interactions. It is one of the most empirically robust principles in the field.
The Psychology
The cognitive and motor mechanics are grounded in how the brain controls movement. Precise pointing is not a single ballistic motion — it is a series of corrective micro-movements as the limb approaches the target. Larger targets reduce the precision required for final corrections, so the movement can complete more quickly. Closer targets require less total travel distance, cutting the time for both the ballistic approach and the final corrections. Combined, these two factors produce the log-linear relationship Fitts observed: doubling target size saves a consistent fraction of movement time regardless of starting size, and halving distance saves proportional time.
In Product Design
In interface design, Fitts's Law governs button sizing, touch target dimensions, menu placement, and the use of screen edges and corners. Apple's Human Interface Guidelines specify a minimum touch target of 44x44 points for good reason: smaller targets force fine motor precision that users cannot reliably maintain. Screen edges and corners are "infinite targets" because the cursor cannot travel past them, making them fast to acquire regardless of size — which is why operating system menus, application docks, and start buttons have historically lived at screen edges. Contextual menus that appear adjacent to the user's cursor are faster than fixed menus because the travel distance is minimised. Destructive actions (delete, logout, cancel subscription) should be small and distant — Fitts's Law can be used deliberately to slow users down when the stakes are high.
How to Apply It
The practical implications are immediate. Audit your primary CTAs: are they large enough to be acquired quickly? Check your touch targets on mobile — a 32x32px icon with 4px padding between it and the next icon is a guaranteed tap error waiting to happen. Review your most frequently used actions: are they positioned close to where the user's attention and cursor typically rests? Floating action buttons, sticky navigation, and inline edit controls all apply Fitts's Law to reduce the travel cost of common actions. For desktop interfaces, consider that the cursor arrives at modals and dropdowns from wherever it was last active — design popup positions to minimise that travel.
Why It Matters
When Fitts's Law is ignored, the cost shows up in interaction data: missed taps, mis-clicks, accidental triggers of adjacent controls, and frustrated users who repeatedly overshoot their targets. These are not user errors — they are design errors. The user's motor system is performing exactly as Fitts's model predicts. It is the designer's responsibility to create targets large enough and positioned close enough that the prediction produces success rather than failure.


