I create \"normal\" table and all TD\'s have \"border: 1px solid #e6e6e6\" and \"margin: 0\". TR and TABLE have too \"margin/padding: 0\" but I still have space between TDs
Since cellspacing
and cellpadding
are no longer supported in HTML5, use the following CSS:
table {
border-collapse: collapse;
}
jsfiddle