Table: Review

ATTRIBUTE DESCRIPTION
colspan Use this attribute to make a cell span many columns
id Use this attribute to uniquely define a table
rowspan Use this attribute to make a cell span many rows

PROPERTY
border Use this CSS property to define a border
border-collapse Use this CSS property to collapse cell borders
border-spacing Use this CSS property to set the spacing between cells
padding Use this CSS property to add padding to cells
text-align Use this CSS property to align cell text

TAG
<caption> HTML element that defines a table caption
<table> HTML element that defines a table
<td> HTML element that defines a data cell in a table
<th> HTML element that defines a header cell, the heading in a table
<tr> HTML element that defines a row in a table
If you want to learn more about tables, here are some links:
<colgroup> Specifies a group of one or more columns in a table for formatting
<col> Specifies column properties for each column within a <colgroup> element
<thead> Groups the header content in a table
<tbody> Groups the body content in a table
<tfoot> Groups the footer content in a table

Back button Table of Contents Next button