0
I’m creating a responsive table, only when I’m on a big screen, the table gets smaller than it should, I tried to add a max-width
in the css of it, but it still doesn’t get the proposed size.
<table bordered striped centered highlight responsive-table style="max-width: 500px;">
<thead>
<tr>
<th>Código</th>
<th>Descrição</th>
<th>Categoria</th>
</tr>
</thead>
<tbody>
<tr>
<td>001</td>
<td>Notebook i7 8GB Branco</td>
<td>Informática</td>
</tr>
<tr>
<td>002</td>
<td>Caneta Esferográfica Azul</td>
<td>Papelaria</td>
</tr>
</tbody>
</table>