如何取消单独的表格单元格之间的空格

时间:2018-04-03 16:59:37

标签: html html-table collapse border-spacing

我制作了一个边距为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>
    
  

我想保留桌子其余部分的空间,希望你能提供帮助。

1 个答案:

答案 0 :(得分:0)

我解决了!!! 我只是简单地找到了我想要没有空间的行,它上面的行更高,直到它们之间的空间消失。 我使用的代码:

&#13;
&#13;
<td style="position: relative; bottom: 18px;>
&#13;
&#13;
&#13;

简单.. xD