I am using bootstrap grid to make my page responsive and i have following core structure for my page:
<div class="row">
<div class="col-md-8">
<div class="row">
<!--for each starts here-->
<div class="col-md-6">
<!--block here-->
</div>
<div class="col-md-6">
<!--block here-->
</div>
<div class="col-md-6">
<!--block here-->
</div>
<!--so on-->
</div>
</div>
<div class="col-md-4">
<!--always visible block-->
</div>
</div>
Take a look at the live example. The problem that I'm facing with is that each panel has different height and may change its height dynamically, so when it happens each panel starts jump from one place to another. And I want to remove those white vertical spaces between panels, more precisely I want to make it look like a mosaic. Is there a way how to do it using only bootstrap without any additional plugins and things like that?
Thanks in advance!