Definition
Email fluid width is a layout approach in which an email's container is defined as a percentage of the viewport rather than a fixed pixel width, allowing it to expand and contract with the screen. This differs from a fixed-width email, which always renders at a set size regardless of device. Fluid design improves compatibility across desktops, tablets, and phones.
How It Works
In a fluid layout, the outer table or container uses a width value such as 100 percent, and inner columns use percentages that add up to the available space. As the screen narrows, the columns shrink proportionally. This technique is often paired with a max-width constraint so the email does not stretch too wide on large monitors. The result is a layout that adapts smoothly without necessarily relying on media queries.
Fluid width is especially valuable because some email clients do not support media queries and therefore never trigger a mobile breakpoint. In those clients, a fluid layout still narrows to fit the screen, reducing the need for horizontal scrolling. However, fluid layouts alone do not stack columns, so very narrow screens can still become cramped if content is dense.
Best Practices
- Use percentage-based widths with a
max-widthlimit, typically around 600 pixels. - Avoid fixed pixel widths for the outer container where a fluid design is desired.
- Combine fluid width with responsive stacking for the best mobile experience.
- Test at multiple viewport sizes to confirm content does not become too compressed.
- Keep images fluid by setting their width to 100 percent with an appropriate
max-width.
Example
A nonprofit builds its donation email using a 100-percent-wide container capped at 600 pixels. On a desktop, the email sits comfortably centered at 600 pixels; on a phone, it narrows to fill the screen. Because the layout is fluid, even an older email client that ignores media queries still displays the message without horizontal scrolling, supporting better email accessibility and engagement.
Was this useful?
Related Glossary Terms
Above the Fold in Email
Above the fold in email refers to the content visible to a recipient before they scroll, a critical area for first impressions and primary calls to action.
Accessible CTA (Email)
An accessible CTA is a button or link coded with sufficient colour contrast, visible focus states, descriptive screen-reader text, and a minimum touch target of 44×44 pixels.
Adaptive Design
Adaptive design in email uses predefined layouts that adjust to specific device or client widths, rather than fluidly resizing to every possible screen.
AI Content Detection
AI content detection refers to the growing ability of email clients, spam filters and consumers to identify machine-generated email copy. It matters for deliverability, trust and engagement in an era of mass-produced AI marketing email.
AI-Generated Content in Email
AI-generated content in email is copy, images, code or subject lines produced by artificial intelligence tools to speed up campaign production and testing.
Alt Text
Alt text is the written alternative to an image in an email, displayed when images are blocked, slow to load, or consumed by screen readers.
Frequently Asked Questions
Fluid design scales continuously with the viewport, while responsive design changes layout at defined breakpoints. They are often used together.
Fluid width adapts more gracefully across devices, but it can look stretched on large screens without a `max-width`. A hybrid approach is common.
Most support percentage widths, though a few legacy clients handle them inconsistently. Testing remains essential.