Good morning!
I'm new here in the forum and I'm developing a page using bootstrap 3 and I have a question about the Grid System.
I have a row with 4 columns (I left the background of the columns highlighted in black).
Bydecreasingthesizeofthebrowserwindow,thegridsystemwilladjustthecolumnsbyplayingdowntheline.
Bydecreasingthewindowwell,theproblemhappens.Asthetextofthe1stcolumnisalittlemoreextensivethantheothers,theheightconsequentlyisalittlehigher.Withthat,the3rdcolumnwasplayedtotherightandthe4thcolumnwasplayedtothebottomline.
Followthesourcecodeofthegrid.
<divclass="container">
<div class="row" style="background-color: #378;">
<div class="col-sm-12 col-md-6 col-lg-3" style="background-color: #666">
<div class="thumbnail avatar view-team">
<i class="fa fa-car fa-4x" style="color: #A0CD4C;"></i>
<div class="caption">
<h4>Melhor</h4>
<p>O mais completo gerenciador de bla bla bla</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-3" style="background-color: #555">
<div class="thumbnail avatar view-team">
<i class="fa fa-thumbs-o-up fa-4x" style="color: #415E9B"></i>
<div class="caption">
<h4>Confiabilidade</h4>
<p>Qualidade e experiência comprovada</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-3" style="background-color: #333">
<div class="thumbnail avatar view-team">
<i class="fa fa-heart-o fa-4x" style="color: #FF0000;"></i>
<div class="caption">
<h4>Favorito</h4>
<p>O sistema favorito dos clientes</p>
</div>
</div>
</div>
<div class="col-sm-12 col-md-6 col-lg-3" style="background-color: #444">
<div class="thumbnail avatar view-team">
<i class="fa fa-usd fa-4x" style="color: #F9E221;"></i>
<div class="caption">
<h4>Preço</h4>
<p>A Teste1 garante o melhor preço para você</p>
</div>
</div>
</div>
</div>
</div>
Is there any way for the columns to be the same height, or do not leave that space all empty?
Thank you