HTML Table Padding & Spacing

Control the space inside and between table cells.

Cell padding is the space inside a cell, set with the CSS padding property. Border spacing is the gap between cells, set with border-spacing.

Padding and spacing

<!DOCTYPE html>
<html>
<body>

<style>
  table, td { border: 1px solid #999; }
  td { padding: 10px; }
  table { border-spacing: 8px; }
</style>
<table>
  <tr>
    <td>Asha</td>
    <td>Designer</td>
  </tr>
  <tr>
    <td>Ravi</td>
    <td>Developer</td>
  </tr>
</table>

</body>
</html>