If you mean the borders around the table cells, they will look thicker because they are not "reset" - you need to write this:
table {
border-collapse: collapse;
}
and it should make the borders on each side of the cell one pixel thick (or thin, as you want to call it!) in the table.
source
share