Tuesday, June 6, 2017

Define the CSS border-collapse property.

If you want the borders to collapse into one border, add the CSS border-collapse property:

Example

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}