Answers for "difference between cellpadding and cellspacing in table tag of html"

CSS
2

Set table cellpadding and cellspacing in CSS

td { 
    padding: 10px;  /* cellpadding */
}

table { 
    border-spacing: 10px;   /* cell spacing */
    border-collapse: separate;
}
Posted by: Guest on July-06-2020

Code answers related to "difference between cellpadding and cellspacing in table tag of html"

Browse Popular Code Answers by Language