- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我手写了一份电子邮件简报,除了在 Android 4.4 之外的各种电子邮件客户端中都能正常工作,在 Android 4.4 中我遇到了一个错误,内容不会缩小以适合移动屏幕。理想情况下它应该是响应式的,但如果不是简单地按比例缩小就可以了。它在其他移动浏览器中运行良好 - gmail、iOS 邮件等。
下面是来自 Litmus(电子邮件测试服务)的测试截图。我对内容进行了模糊处理,但正如您所见,只有一半内容显示出来,其余内容丢失在右侧,因为它没有按比例缩小。
来自 Litmus 的 ANDROID 4.4 屏幕截图:
这是我正在使用的 HTML(再次删除了内容),但显示了 html 结构和 css。我还尝试添加一个元视口(viewport)标签:<meta name="viewport" content="width=device-width, initial-scale=1.0" />
,但无济于事。有什么我可以改变的想法吗?
<head>
<style type="text/css">
@media only screen and (max-width: 480px){
.dm-user-inserted-image{
height:auto !important;
max-width:600px !important;
width: 100% !important;
}
}
@media screen and (max-width:480px) {
table {
width: 100%!important;
}
td {
width: 100%!important;
}
}
.header-logo {
}
a {
border-style: none;
}
a img {
border-style: none;
}
.heading-light {
}
.heading-bold {
font-family: Helvetica, Arial, sans-serif;
font-weight: 600;
color: #000000;
}
.horizontal-rule {
background:none;
border-top:solid 1px #CCCCCC;
border-top-width:1px 0 0 0;
border-left:none;
border-right:none;
border-bottom:none;
height:1px;
width:100%;
margin:0px 0px 0px 0px;
padding-top:10px;
padding-bottom:10px;
}
.header-message {
font-family: Helvetica-Light, "Helvetica Light", Helvetica, Arial, sans-serif;
font-size: 20px;
color: #666666;
display:block;
font-weight: 500;
text-align: center;
line-height: 30px;
}
.main-message {
font-family: Helvetica-Light, "Helvetica Light", Helvetica, Arial, sans-serif;
font-size: 14px;
color: #666666;
display:block;
text-align: center;
line-height: 1.6;
}
.link-message {
font-family: Helvetica-Light, "Helvetica Light", Helvetica, Arial, sans-serif;
font-size: 14px;
color: #666666;
display:block;
text-align: center;
line-height: 1.6;
}
.footer-details {
font-family: Helvetica-Light, "Helvetica Light", Helvetica, Arial, sans-serif;
font-size: 12px;
color: #666666;
display:block;
text-align: center;
line-height: 18px;
}
.footer-unsub {
font-family: Helvetica-Light, "Helvetica Light", Helvetica, Arial, sans-serif;
font-size: 12px;
color: #666666;
display:block;
text-align: center;
line-height: 18px;
}
</style>
</head>
<body style="text-align:center;" >
<center style="max-width:600px;display:inline-block;" >
<table cellpadding="0" cellspacing="0" width="100%" id="responsive-table">
<tbody>
<tr height="30" width="100%"> </tr>
<tr align="center">
<td class="header-logo">
<a href="" border="0" style="border-style:none;" >
<img width="65" style="border-style:none;" />
</a>
</td>
</tr>
<tr height="50" width="100%" class="bottom-border"> </tr>
<tr align="center">
<!--[if gte mso 12]>
<table width="600" align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<![endif]-->
<td class="horizontal-rule" style="background-color:transparent;background-image:none;background-repeat:repeat;background-position:top left;background-attachment:scroll;border-width:1px 0 0 0;border-style:solid;border-color:#CCCCCC;height:1px;width:100%;margin-top:0px;margin-bottom:0px;margin-right:0px;margin-left:0px;padding-top:10px;padding-bottom:10px;border-top-width:1px 0 0 0;border-top-style:solid;border-top-color:#CCCCCC;border-left-style:none;border-right-style:none;border-bottom-style:none;" >
</td>
<!--[if gte mso 12]>
</td>
</tr>
</table>
<![endif]-->
</tr>
<tr height="10" width="100%" class="bottom-border"> </tr>
<!--[if gte mso 12]>
<table width="600" align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<![endif]-->
<tr align="center">
<td class="header-message" style="font-family:Helvetica-Light, Helvetica, Arial, sans-serif;font-size:20px;color:#666666;display:block;font-weight:500;text-align:center;line-height:30px;" >
<span class="heading-light">TEXT CONTENT<br></span>
<span class="heading-bold" style="font-family:Helvetica, Arial, sans-serif;font-weight:600;color:#000000;" >"Best Interior TEXT CONTENT</span>
</td>
</tr>
<tr height="30" width="100%"> </tr>
<tr align="center">
<td class="main-message" style="font-family:Helvetica-Light, Helvetica, Arial, sans-serif;font-size:14px;color:#666666;display:block;text-align:center;line-height:1.6;" >
TEXT CONTENT
</td>
</tr>
<tr height="20" width="100%"> </tr>
<tr align="center">
<td class="main-message" style="font-family:Helvetica-Light, Helvetica, Arial, sans-serif;font-size:14px;color:#666666;display:block;text-align:center;line-height:1.6;" >
TEXT CONTENT
</td>
</tr>
<!--[if gte mso 12]>
</td>
</tr>
</table>
<![endif]-->
<tr height="20" width="100%"> </tr>
<tr align="center">
<td class="link-message" style="font-family:Helvetica-Light, Helvetica, Arial, sans-serif;font-size:14px;color:#666666;display:block;text-align:center;line-height:1.6;" >
<a href=""></a>
</td>
</tr>
<tr height="30" width="100%"> </tr>
<tr align="center">
<td class="photo">
<a href="" border="0" style="border-style:none;" >
<img width="600" style="border-style:none;" />
</a>
</td>
</tr>
<tr height="18" width="100%"> </tr>
<tr align="center">
<td class="photo">
<a href="" border="0" style="border-style:none;" >
<img width="600" style="border-style:none;" />
</a>
</td>
</tr>
<tr height="18" width="100%"> </tr>
<tr align="center">
<td class="photo">
<a href="" border="0" style="border-style:none;" >
<img width="600" style="border-style:none;" />
</a>
</td>
</tr>
<tr height="18" width="100%"> </tr>
<tr align="center">
<td class="photo">
<a href="" border="0" style="border-style:none;" >
<img width="600" style="border-style:none;" />
</a>
</td>
</tr>
<tr height="18" width="100%"> </tr>
<tr align="center">
<td class="footer-details" style="font-family:Helvetica-Light, Helvetica, Arial, sans-serif;font-size:12px;color:#666666;display:block;text-align:center;line-height:18px;" >
FOOTER CONTENT
</td>
</tr>
</tbody>
</table>
</center>
</body>
最佳答案
你需要添加到@media screen and (max-width:480px)
img{
max-width:100% !important;
height:auto;
display:block;
}
因为你也需要让图片响应
关于android - HTML 电子邮件通讯不响应/按比例缩小以适应 Android 4.4 上的屏幕(适用于其他移动客户端),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35153662/
我遇到了问题,似乎无法解决。 基本上,我希望我的菜单和文本随着分辨率的变化/放大/缩小而调整大小;图片工作正常,内容 div 工作正常,只是菜单似乎无法适应。 请帮我解决这个问题.. 普通 View
我在map reduce上开发了大约20个工作,包括pagerank算法。我从未发现任何具有挑战性的问题可以在线适应mapreduce框架。我想提高自己的技能。有这样的指南吗? 最佳答案 您正在寻找的
我了解到 Java 中没有 NOR,我可以使用 !A && !B 或 !(A||B)。既然 A 和 B 都是假的,为什么我不能使用 !A || B? 最佳答案 因为Java没有NOR运算符,你的表达式
我需要根据构建 CLI 工具的要求评估“GO”,该工具应该可以在不同的操作系统中运行。这是如何在诸如“Cloud Foundry CLI”之类的 CLI 工具中实现的?GO 如何处理这种对操作系统的适
所以我试图让我的下拉菜单正常工作。下拉列表位于我的标题中的列表项下,该列表项会根据用户的用户名而变化。这使得大小不同,但我无法让下拉菜单跟随宽度调整大小。 示例 1: http://jsfiddle.
我已经很努力了,但我还是被 matplotlib 卡住了。请忽略,mpl 文档让我有点困惑。我的问题涉及以下方面: 我用 matshow 函数画了一个对称的 n*n 矩阵 D。行得通。 我想做同样的事
我正在尝试调整 Boyer-Moore c(++) Wikipedia implementation获取字符串中模式的所有匹配项。实际上,维基百科实现返回第一个匹配项。主要代码如下: char* bo
我在底部嵌套了带有文本的 flex 元素。顶部元素具有小于文本的固定宽度: .list-header { display: flex; width: 150px; height: 80px
我想初始化 std::any带有仅 move 类型变量。我找到了 Cannot move std::any . 编译错误案例 在使用链接答案中的 shared_ptr 解决方法之前,我测试了以下代码:
现在我正在使用 webview 处理 ListView 。在这个 listview webview 中用于显示图像。它来自 url。现在我面临一个问题,我无法从 url 获得唯一尺寸的图像,一些图像很
我的文件夹结构是这样的: src --main.cpp tests --src ----main_test.cpp Makefile 我想制作一个像make main_test这样的目标,以便能够以.
前段时间我也在讨论类似的话题。我正在查看我的应用程序,我认为它有很多不必要的代码。我的意思是我有服务负责从两家书店的不同类别的书籍中抓取数据。现在我有 5 个类别,所以我有 5 个方法,但如果我要添加
我使用多个 div 子元素创建父元素,然后根据 data-value 属性在 JavaScript 中计算这些子元素的宽度。 如果我对所有 child 的计算宽度求和,我最终将得到 100%。但出于某
我像这样使用减速板 gem : require 'airbrake' Airbrake.configure do |config| config.api_key = 'XXXXX' confi
我们在企业环境中有一个 svn 存储库结构,如下所示: root libs shared_lib1 shared_lib2 private_lib public_cod
我制作了一个应用程序,其中有许多从 UIView 子类化的 View 。这些 View 的大小和方向是随机的,并且可以保存应用程序屏幕的状态。当用户在打开屏幕的同一设备上保存屏幕时,屏幕状态为“正常”
我需要调整 lucene 的 StandardTokenizer 以适应有关 twitter 数据的一些特殊目的。目前,我使用 StandardTokenizer 来标记一些我想要处理的推文。它工作得
在Windows Store应用中,如果内容是固定的,我们可以把它封装成一个ViewBox,让内容适应不同的分辨率。但是,如果内容不固定,在我的应用程序中,有一个 GridView 哪些项目是动态的,
一切都在标题中。 在我的应用程序中,根据用户所做的选择,我用一个列表填充一个组合框,该列表有时很小(1 个元素)有时很大(150 个元素)。 我想要的不是在启动时将固定高度设置为给定值,而是将 max
我的 2 div 动画感谢我下面的 jquery 脚本。当屏幕小于 700px 时,div 变成更小的正方形(35px 而不是 50px)。我希望 .animate({width:100px}); 仅
我是一名优秀的程序员,十分优秀!