我制作了一个边距为16px的桌子,我想取消一个特定单元格的空间。 这是表格:
<table width="100%" style="text-align: center; position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-collapse: separate; border-spacing: 0 16px;">
<tr style="background-image: url(Pics/background.jpg);">
<td> Some text </td>
</tr>
<!--Only here I do not want a space-->
<tr style="border-collapse: collapse; border-spacing: 0 0;">
<td> Text </td>
</tr>
</table>
我想保留桌子其余部分的空间,希望你能提供帮助。
答案 0 :(得分:0)
我解决了!!! 我只是简单地找到了我想要没有空间的行,它上面的行更高,直到它们之间的空间消失。 我使用的代码:
<td style="position: relative; bottom: 18px;>
&#13;
简单.. xD