Answer the question
In order to leave comments, you need to log in
How to implement float grid in Bootstrap 3?
You need to get the same "wrap" effect - salvattore.com
I read the tutorial on integrating salvattore into Bootstrap, but it seems to me that this is not the best solution.
Has anyone needed to implement something like this? And if so, how did you overcome it?
Answer the question
In order to leave comments, you need to log in
each column needs to be enclosed in a div and everything will work without the jQuery
yes, as written above, it's best to just make, for example, a few col-sm-4 and already place divs with content in them
<div class="col-sm-3">
<div>
content
</div>
<div>
content
content
content
</div>
<div>
content
content
</div>
</div>
<div class="col-sm-3">
<div>
content
</div>
<div>
content
content
</div>
<div>
content
</div>
</div>
<div class="col-sm-3">
<div>
content
content
content
</div>
<div>
content
content
content
content
content
</div>
<div>
content
content
</div>
</div>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question