我遇到问题<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.
但是这些解决方案似乎都不适合我。
非常感谢任何帮助。
由于
答案 0 :(得分:0)
我相信如果你删除这些行就可以解决你的问题
color: #333333;
background-color: #333333;
height: 1px;
border: none;
并添加以下行
border-bottom: 1px solid #333333;