html - How to have different heights between rows for each column? -
i've been using bootstrap grid system , have encountered issue taller div automatically sets height entire row.
here problem:
this summary of code:
<div class="container"> <div class="row"> <div class="row col-lg-4">small div</div> <div class="row col-lg-2">small div</div> </div> <div class="row"> <div class="col-lg-6">tall div</div> </div> </div>
or
<div class="container"> <div class="row"> <div class="col-lg-4">small div</div> <div class=" col-lg-2">small div</div> <div class="col-lg-6">tall div</div> </div> </div>
what can in order have different heights? thank you
Comments
Post a Comment