I'd like to be able to build a fluid masonry grid, like so:
http://desandro.github.io/masonry/demos/fluid.html

$('#container').masonry({
  itemSelector: '.box',
  // set columnWidth a fraction of the container width
  columnWidth: function( containerWidth ) {
    return containerWidth / 5;
  }
});

Comments

Dom.’s picture

Status: Active » Closed (fixed)

Hi,
Please use the latest 3.x and use a percent column width setting.
Thanks