Reputation: 601
How can I make the border-right
of my <td>
meet with the border-right
of my <th>
above it? there is a little gap between them. is there a way to make it extend further down or make the left border of the <td>
extend further up?
Upvotes: 0
Views: 246
Reputation: 723578
To collapse your borders, use the border-collapse
property:
border-collapse: collapse;
This gets rid of the spacing between your table borders.
Upvotes: 3