Validate touch target sizes meet 44x44px minimum requirement
When to Use
Use this tool when designing buttons, links, form controls, or any interactive elements to ensure they meet minimum touch target size requirements for accessibility.
Usage
Command Line
node scripts/check.js --width 48 --height 48
node scripts/check.js --width 32 --height 40 --spacing 8
node scripts/check.js --element "button" --dimensions "44x44"
JSON Input
node scripts/check.js --json '{"width": 48, "height": 48, "spacing": 8}'
Parameters
--width: Element width in pixels--height: Element height in pixels--spacing: Minimum spacing between adjacent targets (optional)--element: Element type description (optional)--dimensions: Dimensions as "WxH" format (alternative to width/height)--json: JSON input with dimensions and spacing properties
Output
Returns JSON with compliance status and recommendations:
{
"dimensions": {
"width": 48,
"height": 48
},
"minimumRequired": {
"width": 44,
"height": 44
},
"compliance": {
"size": true,
"spacing": true
},
"recommendations": []
}
Examples
Check a button size
$ node scripts/check.js --width 48 --height 48 --element "primary button"
✅ Size: PASS (48x48px meets 44x44px minimum)
✅ Spacing: PASS (8px spacing provided)
No issues found - this target meets accessibility requirements
Check a small link
$ node scripts/check.js --width 24 --height 16 --element "footer link"
❌ Size: FAIL (24x16px is below 44x44px minimum)
❌ Spacing: FAIL (insufficient spacing between targets)
Recommendations:
- Increase width to at least 44px (currently 24px)
- Increase height to at least 44px (currently 16px)
- Ensure at least 8px spacing between adjacent interactive elements
WCAG Standards
- Minimum Size: 44px by 44px (approximately 9mm) for touch targets
- Spacing: Adequate spacing between adjacent targets to prevent accidental activation
- Exceptions: Smaller targets allowed if identical function available with larger target within same page
- Enhanced: 44px by 44px strongly recommended, smaller targets only in exceptional cases
Best Practices
- Use 44x44px minimum: Design all touch targets at least this size
- Consider thumb size: Account for finger/thumb size in mobile designs
- Provide spacing: Ensure at least 8px between interactive elements
- Test on device: Verify usability on actual touch devices
- Consider context: Smaller targets may be acceptable in non-critical areas
Learn More
For more information about Agent Skills and how they extend AI capabilities.
You Might Also Like
Related Skills

fix
Use when you have lint errors, formatting issues, or before committing code to ensure it passes CI.
facebook
frontend-testing
Generate Vitest + React Testing Library tests for Dify frontend components, hooks, and utilities. Triggers on testing, spec files, coverage, Vitest, RTL, unit tests, integration tests, or write/review test requests.
langgenius
frontend-code-review
Trigger when the user requests a review of frontend files (e.g., `.tsx`, `.ts`, `.js`). Support both pending-change reviews and focused file reviews while applying the checklist rules.
langgenius
code-reviewer
Use this skill to review code. It supports both local changes (staged or working tree) and remote Pull Requests (by ID or URL). It focuses on correctness, maintainability, and adherence to project standards.
google-gemini
session-logs
Search and analyze your own session logs (older/parent conversations) using jq.
moltbot

