Answers for "simple table html cellpadding"

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
-1

cellpadding in html

<table cellpadding="pixels">
Posted by: Guest on December-28-2021

Browse Popular Code Answers by Language