Answers for "how to give gap between two rows in html table"

0

css display table row gap

table {
    border-collapse: separate;
    border-spacing: 0 1em;
}
Posted by: Guest on July-13-2021
2

html table span 2 rows

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-2020

Code answers related to "how to give gap between two rows in html table"

Browse Popular Code Answers by Language