I have a page: http://f1u.org/competitions
There are 3 tables. I can't understand why they all are with double border.
Please help me to understand.
I have a page: http://f1u.org/competitions
There are 3 tables. I can't understand why they all are with double border.
Please help me to understand.
By default, specifying border="1"
on the <table>
gives not only the table itself a border, but also all the <td>
's within it. There is also some default border spacing.
Adding border-collapse to the <table>
and setting it to "collapse" will remove the spacing and collapse them into one border.
<table style="border-collapse: collapse;">
Ever heard of border-collapse
?