A
A
Anton2016-04-22 02:11:10
css
Anton, 2016-04-22 02:11:10

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

3 answer(s)
D
devstudent, 2016-04-22
@devstudent

each column needs to be enclosed in a div and everything will work without the jQuery

S
Sergey Goryachev, 2016-04-22
@webirus

postovoy.net/17.html

A
Alexander Ruzhevich, 2016-06-15
@ruzhevich

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>

but such a moment will not work if you output in a cycle !!!!

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question