<a>
tags as buttons.To create and style two side-by-side buttons in Webflow without using CSS, and ensure they retain their layout when exported as HTML for use in Mailchimp and Mandrill, you’ll need to use inline styles and table-based layout, which are supported by most email clients.
Drag a Webflow Embed component into the canvas where you want the buttons.
Inside the embed, enter a basic two-column table with inline-styled <a>
tags for buttons.
Example structure (keep this inline):
<table cellpadding="0" cellspacing="0" border="0"><tr><td><a href="https://example.com" style="display:inline-block; background:#0073e6; color:#ffffff; padding:12px 20px; text-decoration:none; font-family:sans-serif; font-size:14px; border-radius:4px;">Button 1</a></td><td style="width:10px;"></td><td><a href="https://example.com" style="display:inline-block; background:#555555; color:#ffffff; padding:12px 20px; text-decoration:none; font-family:sans-serif; font-size:14px; border-radius:4px;">Button 2</a></td></tr></table>
style="..."
attribute.<style>
blocks or <link>
imports, so no CSS classes.To create two side-by-side buttons that retain their layout in Mailchimp and Mandrill, use a table layout with inline-styled <a>
tags inside a Webflow Embed element. Avoid external CSS and complex modern layout methods to maintain full rendering support in email environments.