JSFiddle - React, Tailwind, and code Playground

by Blanca B

HTML

<table>
<tr>
  <th>DĂ­a</th>
  <th>Actividad</th>
</tr>
<tr>
  <td>Martes</td>
  <td>Yoga</td>
</tr>
<tr>
  <td>Jueves</td>
  <td>Pilates</td>
</tr>
<tr>
</table>

CSS

table {
  width: 40%;
  text-align: center;  
  margin: auto;
}

table, th, td {
  border-collapse: collapse;
  border: 1px solid black;
}