I would like to know how I can remove the row separating the columns from this table.
table {
font-family: url('../fonts/Lato-Regular.ttf');
border-collapse: collapse;
border-radius: 4px;
width: 500px;
}
td, th {
border: 1px solid #CACFD2;
text-align: left;
padding: 8px;
}
<table>
<tr>
<th>Loja</th>
<th>Faturamento</th>
</tr>
<tr>
<td>Loja 01</td>
<td>R$ 21.362,17</td>
</tr>
<tr>
<td>Loja 02</td>
<td>R$ 11.238,21</td>
</tr>
<tr>
<td>Loja 03</td>
<td>R$ 19.598,95</td>
</tr>
<tr>
<td>Loja 04</td>
<td>R$ 35.625,12</td>
</tr>
<tr>
<td>Loja 05</td>
<td>R$ 10.854,74</td>
</tr>
</table>