The table and cells have styles rules for borders, background color, and padding.
|
First row first column |
First row second column |
|
Second row first column |
Second row second column |
|
Third row first column |
Third row second column |
The outlines are produced by the style rules:
body {margin: 125px;
background-color: #ffffff;
color: black;}
table {border: solid thin red;
padding: 15px;
background-color: yellow}
td {padding: 10px;
border: solid thin blue;
text-align: center;
background-color: #cccccc}