Styling Tables

by Juan Marco

HTML

<table>
  <tr>
    <th>Name</th>
    <th>Party</th>
  </tr>
  <tr>
    <td>Donald Trump</td>
    <td>Republican</td>
  </tr>
  <tr>
    <td>Hillary Clinton</td>
    <td>Democrat</td>
  </tr>
</table>

CSS

table,
th,
td {
  border: outset gray 5px;
}