How to adjust the size of cells so that they are responsive?
<body>
<div class="corpo">
<main class="tabela">
<table>
<tr>
<th class="t">SEGUNDA</th>
<th class="t">TERÇA</th>
<th class="t">QUARTA</th>
<th class="t">QUINTA</th>
<th class="t">SEXTA</th>
<th class="t">SABADO</th>
<th class="t">DOMINGO</th>
</tr>
<tr>
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
<td>a</td>
</tr>
</table>
</main>
</div>
</body>
With px you end up exceeding the div border and%endsthatone(alwaysthefirst)alwaysendsupbiggerthantheothers.
<style>
.corpo {
width: 90%;
background-color: #60606048;
margin: auto;
}
tr{
border: 1px solid #606060;
width: 90%;
text-align: center;
margin-left: 10%;
}
.t{
background-color: aquamarine;
width: 15%;
}
</style>