CSS BORDER-SPACING
This property specifies the distance between the borders of adjacent table cells in the “separated borders” model. The space between table cells uses the background color/image specified for the explicit or assigned TABLE element.
Example
table {
border: medium double red;
border-collapse: separate;
border-spacing: 10pt 5pt
}
Leave Your Response