I have trying to work this out for months, and Google hasn\'t helped me. I\'m trying to have spacing between
I optimized the solution with transparent border so it has no more obliquely cut inner borders. 1) let table fill horizontal and collapse the borders: 2) Set all borders of table cells to width 0 and prevent background is drawn below the border. 3) Set inner space with transparent border but not to first row and column. here is a jsbin and tags in a table,
table {
width: 100%;
border-collapse: collapse;
}
td {
border: 0px solid transparent;
background-clip: padding-box;
}
tr > td + td {
border-left-width: 10px;
}
tr + tr > td {
border-top-width: 10px;
}