1
<!doctype html>
2
<title>Example</title>
3
<style>
4
table {
5
  border: 1px solid blue;
6
  border-collapse: separate;
7
  border-spacing: 30px 10px;
8
  }
9
td {
10
  border: 1px solid red;
11
  }
12
</style>
13
<table>
14
  <tr>
15
    <td>This table is styled using the CSS border-spacing property. Note that two values were provided - one for horizontal border-spacing and one for vertical border-spacing. </td>
16
    <td>Try changing the value to see the effect it has on the border.</td>
17
    <td>&nbsp;</td>
18
  </tr>
19
  <tr>
20
    <td>&nbsp;</td>
21
    <td>&nbsp;</td>
22
    <td>&nbsp;</td>
23
  </tr>
24
</table>