Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The method for creating space between rows in an HTML table is to use CSS. You can apply the padding or margin properties to the <tr> element to create space. For example:

tr {
  margin-bottom: 10px; /* adds a 10px space between rows */
}