11

Anyone know of any email template CSS framework. I am currently using bootstrap, it works, but not exactly built for email. I have looked at "zurb ink" but it just doesn't seem very developer friendly, so hard to make it work. What are others using out there?

kapso
  • 11,703
  • 16
  • 58
  • 76

4 Answers4

15

Check out MJML. It's a framework solely designed to create responsive emails. Similar to Ink in concept I think.

cyberwombat
  • 38,105
  • 35
  • 175
  • 251
9

Most email templates use tables and inline styling to be compatible across as many different clients as possible.

Campaign Monitor have some that you can download for free and work with to find one that works well for you: https://www.campaignmonitor.com/templates/all/

Ian
  • 865
  • 5
  • 18
  • 29
7

Check Ink, which includes a 12-column grid, as well as some simple UI elements for rapid prototyping.

Ink is developed by the Zurb who also developed one of the popular CSS framework Foundation.

You may check some responsive email templates built on Ink here.

effe
  • 1,335
  • 3
  • 17
  • 26
0

I haven't done this myself but from conversations and random readings it seems like tables and images (i.e. old style "styling") seems to be the way to go with email because a lot of the CSS emails are nto compatible in Outlook

RossBille
  • 1,448
  • 1
  • 17
  • 26
  • Yea agree, I understand the use of tables vs div containers when it comes to emails. Zurb ink follows that principle. But I was more looking into email CSS framework options, since I am a developer and not good at CSS. – kapso Jun 29 '14 at 09:35