如何在单独的 table 单元格之间取消 space

How to cancel a space between separate table cells

我制作了一个边框间距为 16px 高度的 table,我只想取消一个特定单元格的 space。 这是 table:

<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>
    
  

我想保留 space 剩下的 table,希望你能帮忙。

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

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

就这么简单..xD