Forms Unusable on Mobile Devices
Forms in your application are technically functional on mobile but practically unusable. Users report that the page zooms in when tapping input fields, the keyboard covers the submit button, dropdown menus are impossible to select, and multi-step forms lose progress when the keyboard appears.
Poor mobile form usability directly kills conversion rates. Users abandon signups, checkout flows, and contact forms because the experience is too frustrating. This is revenue and engagement you're losing silently.
Claude Code generates forms that work well with a mouse and keyboard but doesn't account for touch interactions, virtual keyboards, and the drastically different viewport behavior on mobile devices.
Error Messages You Might See
Common Causes
- Font size below 16px on inputs — iOS auto-zooms the page when the user taps an input with font-size less than 16px
- Submit button below the fold — The virtual keyboard pushes the submit button off-screen and there's no way to reach it
- No input type attributes — Using type='text' for emails, phone numbers, and dates instead of proper input types that trigger the right keyboard
- Tiny touch targets — Checkboxes, radio buttons, and links are smaller than the recommended 44x44px minimum
- No scroll into view on focus — Focused inputs don't scroll into the visible area above the keyboard
How to Fix It
- Set input font-size to at least 16px — This prevents iOS auto-zoom. Add font-size: 16px or font-size: 1rem (if base is 16px) to all input and select elements
- Use correct input types — type='email' for emails, type='tel' for phones, type='number' for numeric fields, inputmode='decimal' for prices
- Make touch targets at least 44x44px — Increase padding on small interactive elements. Use label wrapping for checkboxes and radios
- Stick the submit button — Use position: sticky; bottom: 0 on the submit button or form footer so it stays visible above the keyboard
- Test on real devices — Simulators don't accurately reproduce keyboard behavior. Test on a real iPhone and Android phone
Real developers can help you.
You don't need to be technical. Just describe what's wrong and a verified developer will handle the rest.
Get HelpFrequently Asked Questions
Why does my page zoom in when I tap an input on iPhone?
iOS Safari auto-zooms when the input font-size is below 16px. Set font-size: 16px on all input, select, and textarea elements to prevent this behavior.
How do I keep the submit button visible when the keyboard opens?
Use position: sticky; bottom: 0 on the submit button container, or use the Visual Viewport API to detect the keyboard height and adjust the layout accordingly.