2
I have this code where creates two tables and a div and the tables are below the div:
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<div id="calendar" class="col-centered">
</div>
</div>
<table border="1">
<Legend><strong>Dias de Atendimento</strong></Legend>
<tr>
<th>Dia</th>
<th>Hora</th>
</tr>
<tr>
<td>Terça-Feira</td>
<td>14:30 às 17:30</td>
</tr>
<tr>
<td>Quinta-Feira</td>
<td>10:30 às 12:00</td>
</tr>
</table>
<table border="1">
<Legend><strong>Legenda</strong></Legend>
<tr>
<th>Cores</th>
<th>Descrição</th>
</tr>
<tr>
<td>Vermelho</td>
<td>Indisponível</td>
</tr>
<tr>
<td>Amarelo</td>
<td>Vagas (sob Consulta)</td>
</tr>
<tr>
<td>Laranja</td>
<td>Alterações</td>
</tr>
</table>
</div>
Intended to place the tables next to the div as shown in the image with the empty square in red next to the div:
Dude is missing a tag
</div>
at the end of your code! Plus what is the version of Bootstrap at 3 or 4? You just want one table next to the other is this?– hugocsl
@hugocsl, I want the Call Day and Legend tables to be next to the calendar, in the empty square marked in red. It’s version 3. There’s no missing tag.
– Bruno
And no answer I gave are you not?? Just open the snippet of the answer...
– hugocsl