I'm trying to make a table with bootstrap. It turns out that some things do not work.
Below my code to build table
:
<div id="tabela" class="container">
<table class="table table-hover table-bordered table-striped" border="0">
<thead>
<tr>
<th>Nome</th>
<th>E-mail</th>
<th>Endereço</th>
<th>Bairro</th>
<th>Cidade</th>
<th>Estado</th>
<th>Telefone</th>
<th>Celular</th>
</tr>
</thead>
<tbody id="tbcadastro">
<tr>
<td>Nome</td>
<td>E-mail</td>
<td>Endereço</td>
<td>Bairro</td>
<td>Cidade</td>
<td>Estado</td>
<td>Telefone</td>
<td>Celular</td>
</tr>
</tbody>
</table>
</div>