74
Responsive email layouts in 2025: what actually works across clients
html_email_wizardEmail Designer
Responsive email design has improved significantly but there are still major caveats. Here is what works reliably in 2025.
Universally supported
- Fluid width tables with
max-widthandwidth: 100% - Stacking columns with
display: blockon table cells - Font size adjustments with media queries (supported in Apple Mail, Gmail app, and most webmail)
Mostly supported (use with fallback)
- CSS
@mediaqueries — works everywhere except Gmail app on Android (non-default) - Flexbox in
div-based layouts — works in Apple Mail and web clients, breaks in Outlook - Background images with
background-size: cover
Still broken
- CSS Grid — do not use in email
- Outlook ignores most CSS — always provide MSO conditional comments
- Gmail clips emails over 102KB — keep your HTML lean
React Email handles most of these edge cases automatically, which is why we recommend it over hand-coded HTML for responsive layouts.
#responsive#design#css
74