My table does not seem to take the class table-bordered
, what's wrong?
This is my code:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="row-fluid" style="margin-top: 10px;">
<div class="row-fluid" style="margin-top:50px;">
<div class="span12 table-responsive" style="margin-left: 0px;">
<table id="detalleMigrante" name="detalleMigrante" class="table table-bordered">
<thead>
<tr>
<th rowspan=2>Municipio </th>
<th rowspan=2>Area Frontera </th>
<th rowspan=2>Campamento/<br>Asentamiento </th>
<th rowspan="2">Procedencia</th>
<th colspan="3">N° Febriles<br>Encontrados</th>
<th rowspan="2">N° Gotas <br>Tomadas</th>
<th rowspan=2> Gota Gruesa<br>Positiva</th>
<th colspan=2> Tratamientos</th>
<th rowspan=3> Medidas Realizdas Contra <br>el Vector</th>
<th rowspan="2" style="width:45px;">Eliminar</th>
</tr>
<tr>
<th class="text-left">Actuales</th>
<th class="text-left">Recientes</th>
<th class="text-left">Tardios </th>
<th class="text-left">Curativos</th>
<th class="text-left">Preventivo</th>
<th style="width:30px;"></th>
</tr>
</thead>
<tbody id="content-tbody">
<tr id="tr-empty-legend"><td colspan="13">No se ha agregado ningun detalle</td></tr>
</tbody>
</table>
<input id="totalCount" name="totalCount" type="hidden" value="0" />
</div>
</div>
</div>
And that's how it looks: