3
I have the following menu below:
How I would make the columns stand next to each other (from the first to the seventh)?
I’m using Bootstrap 4. I tried with the code below, but there was this mess of kkkk photo
<div class="row">
<div class="col-md-9" style="border-right: 2px solid #FFF">
<div class="row">
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Primeira coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Segunda coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Terceira Coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Quarta Coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Quinta Coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Sexta Coluna
</div>
<div class="col-md-2">
<a href="#" class="btn btn-primary btn-custom">
<i class="fas fa-user-plus"></i>
</a><br>
Sétima Coluna
</div>
</div>
</div>
<div class="col-md-3">
<span>Compras Efetuadas:</span>
</div>
</div>
You can increase the size of your grid to one
col-md-12
and assign all columns the size ofcol-md-2
, one will fall down equal.– Guilherme Rigotti
Hello William. Actually she is 09, because in the column that has 03 will be listed the purchases made.
– user24136