/* Remember to define borders for
both the table and the table cells.*/

table, th, td {
border: 1px solid black;

/*If you want the borders to collapse into one border,
add the CSS border-collapse property:*/
border-collapse: collapse;
}

/*Cell padding specifies the space between the cell content and its borders.
If you do not specify a padding, the table cells will be displayed without padding.
To set the padding, use the CSS padding property:*/
th, td {
padding: 15px;
}

/* By default, table headings are bold and centered.
To left-align the table headings, use the CSS text-align property:*/
th {
text-align: left;
}

/*Define a special style only for table id = t01:*/
table#t01 {
background-color: #f1f1c1;
}