Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how to put multiple div (box) with multiple size in the big container to let blank space only in the bottom of the container ?

Here is a representation of what i want:

enter image description here

Here is what I have:

enter image description here

Thanks!

share|improve this question
post your code, or make a jsfiddle – MCSI Aug 13 '12 at 18:55
What MCSI says, we don't know exactly what you are asking. – DMoses Aug 13 '12 at 18:56

4 Answers

up vote 3 down vote accepted

It sounds like you're trying to fit multiple containers of various sizes into a single container with a known size to get the best fit you can. JQuery masonry is perfect for that, if you're willing to use jQuery, though there is no guarantee that it would leave all of the blank space at the bottom.

Documentation here: http://masonry.desandro.com/

Demo here: http://masonry.desandro.com/demos/basic-single-column.html

And you can set gutterWidth to 0 to take out all space between columns. http://masonry.desandro.com/docs/options.html

share|improve this answer
yeah, its something like this. I will try it. Thanks – fliim Aug 13 '12 at 19:06
There is a way to doing it without JS ? Only using CSS? – fliim Aug 13 '12 at 19:47
@fliim I'm not very skilled at CSS myself, but if there is it's probably documented at css-tricks.com, did you have trouble with the plugin? – jaimerump Aug 13 '12 at 19:56
Masonry works good but my problem is that i use a list instead of div. And I re-order my boxes without moving the html element (only by css with a js plugin). So the masonry 'reload' method didn't works after the re-ordering. – fliim Aug 13 '12 at 20:15
Better still, use isotope.metafizzy.co which is Masonry's bigger brother with more options and also dead easy to implement. There is also codecanyon.net/item/jquery-tiles-gallery/2281417 for mainly image based layouts. With only CSS, you can't achieve what you depict. – Systembolaget Aug 14 '12 at 12:51
show 8 more comments

Without more information (your current code, a diagram, a sample website), I'm not really sure what you're asking here. If you're just looking to add bottom spacing to a container, try using CSS with padding-bottom?

share|improve this answer

Do you mean somethink like http://jsfiddle.net/ZFdHz/ ??

share|improve this answer

I tried this trick, but it seems to broke the plugin without any error (no animation anymore):

getSortData : { 
   type : function ($elem) {
       if ($.inArray($elem.attr('data-type'), filters) != -1) {
           return "aaaaa" + $elem.attr('data-type');
       }
       return "bbbbb" + $elem.attr('data-type');
},

Where 'filters' is an array of categories selected.

share|improve this answer
So filters is the list of classes you wish to put up at the top, correct? If the data-type is in that list, you're adding a bunch of a's to the return value so that it gets put first in alphabetical order, else adding b's to depress it in the order. And you say you're not getting any errors? Not even in the developer console? – jaimerump Aug 14 '12 at 20:17
Yeah its that (exept that is not really class, is just the attribute "data-type". And I got no error and I cant print anything in this sort function with console.log. It works one time with animating but it doesnt sort, then I couldnt make animation again. – fliim Aug 14 '12 at 20:24
I don't know isotope well enough to be able to debug this sort of thing, and since you already accepted my answer to this, it's not very likely that the experts will come running. I would recommend starting a new question about this issue so they'll be more likely to come. – jaimerump Aug 14 '12 at 22:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.