This is how you replicate cellspacing and cellpadding with CSS.
table.css {
width:50%;
display: table;
border-collapse: separate;
border-spacing: 20px;
border:1px black solid;
}
.css td{
border:1px green solid;
padding:10px;
}

Leave a Reply