首页 > 解决方案 > 行之间的垂直黑线 HTML!怎么修?

问题描述

我找不到解决行之间垂直黑线的方法...

当我在邮件上使用白色模式时,一切都很好,但是当我将邮件发送到开启黑色模式的手机或具有黑色模式的应用程序时,就会出现线条......

总是当我使用 colspan=2 时会发生这种情况......

这是问题的图片...我用红方块标记黑线

BlackMode 邮件应用程序

默认白色模式

这是我的代码

谢谢!<3

<html>
<head>
<title>TEST</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
</style>
</head>
<body background-color="white" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" width="1000px" heigh="1000px">
<table text-decoration="none !important" id="Table_01" width="450" height="179" border="0 !important" border-color="transparent" cellpadding="0 !important" cellspacing="0 !important" border-collapse="collapse !important" border-spacing="0 !important">
    <tr>
        <td colspan="3" >
            <img border=0 src="images/infologo.png" width="450" height="92"></td>
    </tr>
    <tr>
        <td>
            <img border=0 src="images/mob.png" width="165" height="25"></td>
        <td colspan="2">
            <img border=0 src="images/pmob.png" width="285" height="25"></td>
    </tr>
    <tr>
        <td>
            <img border=0 src="images/fiks.png" width="165" height="22"></td>
        <td colspan="2">
            <img border=0 src="images/social.png" width="285" height="22"></td>
    </tr>
    <tr>
        <td>
            <img border=0 src="images/loc.png" width="165" height="19"></td>
        <td>
            <img border=0 src="images/ig.png" width="151" height="19"></td>
        <td>
            <img border=0 src="images/fb.png" width="134" height="19"></td>
    </tr>
    <tr>
        <td colspan="3">
            <img border=0 src="images/site.png" width="450" height="21"></td>
    </tr>
</table>
</body>
</html>

标签: htmlcss

解决方案


推荐阅读