How to determine the default values of cell padding and border-spacing applied to a table.

Reference table

Test HTML table attributes

Test CSS table properties

(1) The top table is the table with no code to give it any size. It will be the Reference table because we will make no changes to it.

(2) The second table has HTML table attributes cellpadding="" and cellspacing="". However, those attributes contain NO values. Your job is to add numbers (values) to the "cellpadding" and "cellspacing" attributes in the HTML until that table looks like the Reference table. Warning: If you start with zeros, the table will disappear. :smile:

(3) The bottom table has been give a classname of "test". The CSS rules .test {border-spacing:;} and .test td {padding:;} appear in the CSS at the top of the page. Your job is to add values in pixels (px) to the CSS properties until the bottom table looks like the Reference table. Warning: If you start with zeros, the table will disappear. :smile:

HTML attributes and CSS properties were covered in part 1. If you have problems applying values to the the HTML attributes or CSS properties in this exercise, please review part 1.