Cells in the head of a table get what element?
th
What is the table footer element and where does it belong?
tfooter, it belongs above the table just below thead
What is the heading element for a table?
thead (with th cells inside)
What’s the common way to remove spacing between cells?
border-collapse: collapse;
Make a cell cover more than 1 row or column
use colspan and rowspan, e.g. /td colspan=”3”/
What property and value ensure table column widths will remain as intended despite width of content?
table-layout: fixed; // or auto (use on the table element)