所以,我有一个时事通讯应用程序,我正在使用Roadie gem,以便我可以将内嵌样式移动到标题中。但是,电子邮件在移动设备上看起来并不是最好的。
确保您的电子邮件模板在具有小屏幕的移动设备上响应良好/看起来很好的最佳方法是什么?
这是我的模板代码:
<!DOCTYPE html>
<html lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>My Title</title>
<link href="http://fonts.googleapis.com/css?family=Oswald:400,300,700" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700' rel='stylesheet' type='text/css'>
<style type="text/css">
body{font-family: 'cavier', 'Source Sans Pro', sans-serif;background: #eeeeee;}
.container{width: 570px;margin: auto;padding: 40px 0;}
.main {padding: 70px 100px;font-weight: 300;background: #fff;}
.header{background: #cc0000;padding: 10px 0 5px 25px;min-height: 40px;}
.logo{float: left;}
.credo{color: white;font-style: italic;font-size: 12px;margin-left: 230px;margin-top: 10px;}
.footer {background: #7e7e7e;text-align: center;color: #fff;font-weight: 100;padding: 15px 0;}
.unsubscribe {text-align: center;color: #fff;font-weight: 100;padding: 15px 0;}
.h8{font-size: 28px; font-weight: 300;}
.red, .red a{color: #d93f3f;text-decoration: none;}
div.text{font-size: 20px;color:#616161;margin-bottom: 5px;}
.justify{text-align: justify;}
.blue, .blue a{color: #3fb2ff;}
.get_started{background: #66ccff;color: #fff;text-decoration: none;padding: 10px 30px;font-weight: 400;font-size: 22px;}
.branding {color: white; font-weight: normal;}
</style>
</head>
<body>
<div class="container">
<div class="header">
<%= image_tag 'logo.png', class: 'logo' %>
<div class="credo">Credo here</div>
</div>
<div class="main"><%= yield %></div>
</div>
</body>
</html>
请告知。
答案 0 :(得分:0)
我想说记住这一点非常重要:
不要过度设计。保持简单,创建的对象越多,出错的可能性就越大。
更好 - 将您的设计限制在一个列中 - 两侧可能有空格,而您的内容可能只有一列。
试试这个网站。它会向您展示您的设计在不同分辨率下的样子。