HTML tables can be styled pretty easily with CSS.
HTML Table attribute: cellspacing = CSS: border-spacing
HTML Table attribute: cellpadding = CSS: padding (for td)
For example,
<table cellspacing=4 cellpadding=5>
works the same as:
table {border-spacing: 4px}
td {padding: 5px}
Leave a Reply