HTML Element Style How to - Add space between two particular table cells td








Question

We would like to know how to add space between two particular table cells td.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
td:nth-of-type(2) {<!--from ww  w  .j a v  a2 s .  c om-->
  padding-right: 10px;
}
</style>
</head>
<body>
  <table>
    <tr>
      <td>One</td>
      <td>Two</td>
      <td>Three</td>
      <td>Four</td>
    </tr>
  </table>
</body>
</html>

The code above is rendered as follows: