Touch targets have sufficient size and spacing

Buttons and interactive elements are large enough to tap easily on touch screens.

On this page

Impact

ScanGov impact ratings

About

Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets.

Risks

Users with motor disabilities struggle to tap small buttons.

Why it's important

Follows established patterns that prevent common usability barriers for people with disabilities.

User stories

As a user with a disability, I want the site to follow accessibility best practices so that I can use it without encountering barriers.

Code

Failing pattern:

/* Fail: touch target too small */
.icon-btn { width: 16px; height: 16px; }

Passing pattern:

/* Pass: meets WCAG 2.2 minimum (24x24 px) */
.icon-btn {
  min-width: 24px;
  min-height: 24px;
  padding: 0.5rem 1rem;
}

Error

ScanGov messaging when a site fails a standard:

Failed: Touch targets have sufficient size and spacing

Guidance

Indicators

On this page