Remove all padding and margin table HTML and CSS
Try to use this CSS:
/* Apply this to your `table` element. */
#page {
border-collapse: collapse;
}
/* And this to your table's `td` elements. */
#page td {
padding: 0;
margin: 0;
}
Try this:
table {
border-spacing: 0;
border-collapse: collapse;
}