<hr />未显示在移动电子邮件客户端上

时间:2016-11-03 18:20:39

标签: ios css email responsive-design

我遇到问题<hr>仅在移动电子邮件客户端上显示为黑点。这就是我在CSS中使用的内容:

 hr {
  color: #333333;
  background-color: #333333;
  height: 1px;
  border: none;
  display: block;
  width: 100% !important;
  }

我在这个网站上看到了一些不同的建议,例如:  <hr> tag invisible in ios & android devices browsers

<hr> not displaying at all on IOS Safari and regular android browser.

但是这些解决方案似乎都不适合我。

非常感谢任何帮助。

由于

1 个答案:

答案 0 :(得分:0)

我相信如果你删除这些行就可以解决你的问题

color: #333333;
background-color: #333333;
height: 1px;
border: none;

并添加以下行

border-bottom: 1px solid #333333;