diegodalbosco
diegodalbosco

Reputation: 63

How to obtain a fluid multi columns layout in bootstrap?

I have two posts in a row but if the height of the posts is different there's a space between the two vertical post, How can I remove this space? (I want obtaining a layout like google plus multi columns)

The code is like this now:

<div class="container-fluid">
  <div class="row-fluid">
    <div class="col-md-6"> other things here </div>
    <div class="col-md-6"> other things here </div>
  </div>
<div class="row-fluid">
... ...

Upvotes: 1

Views: 90

Answers (1)

Lara
Lara

Reputation: 2236

You can't create it only with CSS, as specified in comments you can use this plugin:

http://masonry.desandro.com/

Upvotes: 3

Related Questions