A better way than setting cellspacing="10"
is to use CSS. You can use the following CSS to target the table’s cell spacing.
table {
border-spacing: 10px 0;
}
The first value specifies the horizontal spacing, and the second value specifies the vertical spacing.