Mobile dominance is not a forecast. It is the operational baseline. By early 2025, aggregated data indicates that over 65% of email opens occur on mobile devices, with B2C sectors frequently reporting figures north of 75%. Yet, marketing teams still frequently approve desktop mockups that degrade gracefully into broken layouts on smaller screens.

For CRM managers and technical marketers, the challenge is not just aesthetic. It is structural. An email that renders poorly triggers an immediate bounce or delete action, signaling to Internet Service Providers (ISPs) that the content is low value. This negatively impacts domain reputation and deliverability.

There are two primary architectural schools of thought for solving this: Responsive Design and Fluid Design. While the terms are often used interchangeably in general web development, they represent distinct technical approaches in email coding. Understanding the difference – and knowing when to deploy the hybrid “Spongy” approach – is necessary for maintaining high engagement rates across fragmented email clients.

Responsive Design: Precision Through Media Queries

Responsive design relies on CSS media queries (@media) to dictate how content behaves at specific screen resolutions. It is a logic-based approach: “If the screen is narrower than 600 pixels, do X; otherwise, do Y.”

This method allows for significant layout changes. You can stack columns, hide non-essential elements on mobile, increase font sizes for readability, or swap images entirely. It offers the highest level of design control.

The Technical Implementation

In a responsive email, you define a fixed width for desktop (usually 600px or 640px) and use a media query to override styles on mobile. Here is a simplified example of how this looks in the code:


<style>
 /* Desktop styles are default */
 .container { width: 600px; }
 .column { width: 50%; display: inline-block; }

 /* Mobile override */
 @media only screen and (max-width: 600px) {
 .container { width: 100% !important; }
 .column { width: 100% !important; display: block !important; }
 }
</style>

The Limitation

Responsive design has an Achilles heel: support. While Apple Mail (iOS) and the native Android mail app handle media queries perfectly, other clients are less accommodating. The Gmail app has improved significantly but can still strip header styles in certain contexts (particularly with non-Google accounts added to the Gmail app). Older versions of mobile clients often ignore media queries entirely, rendering the desktop version scaled down to unreadable microscopics.

Fluid Design: Stability Through Percentages

Fluid design (often called Scalable design) ignores breakpoints. It does not ask “how wide is the screen?” Instead, it instructs the content to fill the available space, whatever that space may be. It functions like water filling a container.

This approach uses percentage-based widths rather than fixed pixel counts for the main structural elements. As the screen shrinks, the content narrows. This ensures that the email is legible on a 320px wide smartphone and a 1920px wide monitor without requiring code to detect the device type.

The Technical Implementation

Fluid design requires simpler code but more robust planning. You set the width of your tables to 100% and allow the text to reflow naturally.


<table width="100%" border="0" cellspacing="0" cellpadding="0">
 <tr>
 <td align="center">
 <!-- Content flows to fill space -->
 <table width="100%" style="max-width: 600px;">
 <tr>
 <td>Your content here...</td>
 </tr>
 </table>
 </td>
 </tr>
</table>

The Limitation

The primary downside of pure fluid design is the lack of layout control on large screens. Without a max-width constraint, a fluid email will stretch across the entire width of a 27-inch monitor, making lines of text uncomfortably long to read. Furthermore, multi-column layouts do not stack in a purely fluid model; they simply get very narrow, which can break the design integrity of complex newsletters.

The Hybrid “Spongy” Approach: The 2025 Standard

For professional CRM programmes, relying solely on responsive or solely on fluid is rarely sufficient. The current gold standard is the Hybrid or “Spongy” coding technique. This method combines the structure of fluid design with the constraints of fixed widths, ensuring compatibility across the most difficult clients (specifically Outlook on Windows).

Hybrid design uses fluid percentage-based grids that are constrained by a max-width CSS property. This handles the fluid scaling. To support Microsoft Outlook – which runs on the Word rendering engine and ignores max-width – you wrap the content in conditional “Ghost Tables.”

Solving the Outlook Problem

Outlook on desktop is the primary reason email coding remains a specialist skill. It does not support modern CSS. To force Outlook to respect the width of an email, we use Microsoft Office (MSO) conditional comments. These are lines of code that only Outlook reads, while every other email client ignores them.

Here is the structure of a Hybrid container:


<!--[if (gte mso 9)|(IE)]>
<table width="600" align="center" cellpadding="0" cellspacing="0" border="0">
 <tr>
 <td>
<![endif]-->

<table class="content" align="center" cellpadding="0" cellspacing="0" border="0" style="width: 100%; max-width: 600px;">
 <tr>
 <td>
 Content goes here. 
 Fluid for mobile, constrained for modern desktop.
 </td>
 </tr>
</table>

<!--[if (gte mso 9)|(IE)]>
 </td>
 </tr>
</table>
<![endif]-->

This code tells Outlook: “Render a fixed table of 600 pixels.” It tells everyone else: “Render a fluid table that grows up to 600 pixels.” This delivers the best possible experience to every recipient regardless of their device.

Client Compatibility Matrix

When deciding on an approach, review where your subscribers are opening their emails. B2B lists heavily skewed toward Outlook require different handling than B2C lists dominated by Gmail and iOS.

Apple Mail (iOS and macOS)

Apple Mail is the most capable email client. It supports modern web standards, including HTML5 video and CSS3. Both Responsive and Fluid designs work flawlessly here. If your audience is 80% iPhone users, you have significant creative freedom.

Gmail (App and Web)

Gmail is complex. It parses HTML content and removes styles it considers unsafe. While it now supports media queries, it is safer to use the Hybrid approach. This ensures that if the media query is stripped or fails to fire, the fluid nature of the layout preserves readability.

Microsoft Outlook (Windows)

Outlook 2016, 2019, and 365 on Windows use the Word rendering engine. They do not support flexbox, grids, or standard floats. Pure responsive design often fails here because the media queries are ignored, and divs do not behave as containers. The Hybrid approach with MSO ghost tables is the only reliable way to control layout in Outlook while maintaining mobile friendliness.

Practical Takeaways for CRM Leaders

Email design is not merely about brand guidelines; it is about technical accessibility. To ensure your campaigns perform in 2025, adhere to these operational rules:

  • Default to Hybrid: Unless you have a specific reason not to, use the Hybrid/Spongy coding method. It covers the widest range of potential rendering issues.
  • Inline Your CSS: While many clients now support style sheets in the head, inlining critical CSS (putting styles directly on the HTML tags) remains a necessary safety net for Gmail and older clients.
  • Design for Mobile First: Do not design a desktop email and ask developers to “make it mobile.” Design the mobile view first. Simplification improves click-through rates.
  • Test the Rendering Engine: Do not rely on browser previews. Use testing tools like Litmus or Email on Acid to see how the specific code renders in Outlook 2019 and Gmail App on Android.

Technical precision in email coding directly influences ROI. A broken email is a wasted opportunity. By selecting the right framework – Responsive for control, Fluid for simplicity, or Hybrid for universal compatibility – you ensure your message survives the journey to the inbox.

If your current email templates are seeing high bounce rates or rendering issues across different devices, it may be time to audit your underlying code structure. At Data Innovation, we specialise in untangling complex CRM challenges and optimising deliverability. Contact us for a diagnostic consultation to ensure your technical infrastructure is supporting your marketing goals.