Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<table id="myTable" border="1">
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$150</td>
  </tr>
</table>
<br>
<button type="button" onclick="myFunction()">Change border spacing</button>
<script>
function myFunction() {
  document.getElementById("myTable").style.borderSpacing = "20px";
}
</script>
</body>
</html>