首页htmltdHTML Element Style - 如何添加两个特定表格单元格td之间的空格...

HTML Element Style - 如何添加两个特定表格单元格td之间的空格...

我们想知道如何添加两个特定表格单元格td之间的空格。...

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#leftbutton {
  float: left;
}

#rightbutton {
  float: right;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>short text</td>
      <td>long long long text</td>
      <td>short text</td>
    </tr>
    <tr>
      <td colspan='3'>
        <button id='leftbutton'>Left</button>
        <button id='rightbutton'>Right</button>
      </td>
    </tr>
  </table>
</body>
</html>