How to add a margin to a table row [duplicate]

The border-spacing property will work for this particular case.

table {
  border-collapse:separate; 
  border-spacing: 0 1em;
}

Reference.

Leave a Comment