Eu tentei criar classes para configurar diferente o rodapé da tabela (pra ficar sem bordas) e não estou conseguindo acertar o CSS.
Podem me ajudar?
<table>
<thead class="cabecalho">
<tr>
<th>Dia</th>
<th>Horário</th>
</tr>
</thead>
<tbody class="corpo">
<tr>
<td>Segunda-feira</td>
<td>8 ~ 20h</td>
</tr>
<tr>
<td>Quarta-feira</td>
<td>8 ~ 20h</td>
</tr>
<tr>
<td>Sexta-feira</td>
<td>8 ~ 20h</td>
</tr>
</tbody>
<tfoot class="rodape">
<td>*horários referentes a 2020<td>
</tfoot>
</table>
table {
margin: 20px 0 40px;
}
thead {
background: #555555;
color: white;
font-weight: bold;
}
.cabecalho {
border: 1px solid #000000;
padding: 8px 15px;
}
.corpo {
border: 1px solid #000000;
padding: 8px 15px;
}
.rodape {
border: none;
padding: 8px 15px;
}```