摆脱表行之间的空白

时间:2017-07-18 14:49:35

标签: html css

我试图摆脱这里的图像之间的红色背景。 我怎么能用css做到这一点?

 <table style="background-color:red; padding:0;margin:0;">
            <tr>
                <td>
                    <img src="/graphics/susSlogan.gif">
                </td>
            </tr>
            <tr>
                <td>
                    <img src="/graphics/susSlogan.gif">
                </td>
            </tr>
        </table>

enter image description here

2 个答案:

答案 0 :(得分:0)

您想要更改<td>元素的填充。如下所示:

td{
    padding-bottom: 0;
}

答案 1 :(得分:0)

您可以使用

<table cellpadding="0"></table>

https://www.w3schools.com/tags/att_table_cellpadding.asp

或者您可以使用

td {
    padding-bottom: 0px;
}

https://www.w3schools.com/css/css_table.asp