0
I need the columns to float next to each other inside a card. For this I set the first column to occupy 8 spaces and the second 4.
col-8 e col-4
But they’re not floating next to each other.
I need the following behavior.
But even the first being col-8
and the second col-4
it does not float beside, I have tried to decrease the values and even then without success. The only external css I am applying is relative to the sources.
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="cards text-nowrap">
<div class="col-8">
<p>Lorem, ipsum dolor.</p>
<p>Lorem, ipsum.</p>
<i class="fas fa-calendar-alt"></i>
<p>23/04/2019 - 23/04/2022</p><br>
<button class="btn-danger mt-3">danger</button>
</div>
<div class="col-4">
<div class="circle">
<i class="fas fa-shield-alt"></i>
</div>
</div>
</div>
</div>
</div>
</div>