Search code examples
csscss-floatcontainersfluidcontain

Fluid width container to hug floats


I have a container (image gallery) that is max-width:80%. Inside, images are floated left forming columns and rows. As you shrink/expand the browser window, more or fewer images fit into each row and there is typically a "remainder" at the end of each row, when there is not enough space to fit another full image:

http://jsfiddle.net/vladmalik/DRLXE/1/

I'd like the container to expand or contract to exactly hug however many floats fit into a column (so there is never a yellow remainder to the right). Can this be done with CSS?

HTML:

<section>  
   <div></div>  
   <div></div>  
   <div></div>  
   <div></div>  
   <div></div>  
</section>  

CSS:

div {  
   width: 100px;  
   height: 100px;  
   float:left;  
   background: red;  
}  

section {  
   margin: 0 auto;  
   max-width: 80%;  
   background:yellow;  
   overflow: hidden;  
}  

Solution

  • I'm thinking you might be able to do this with a jQuery .length() of div that constantly re-calculates the needed width and height based on window size. So if...

    div {
      width: 100px;
      height: 100px;
      float: left;
    } 
    

    Then...

    $(document).ready(function(){
        changeSize();
    });
    
    function changeSize(){
        var length = $('div').length(); //let's say is 12 
    
        var windowwidth = $(window).width(); //let's say it's 1000px, 
    
        if (length >= 10 && windowwidth >= 600px){ 
            $('section').css('width', '300px'); 
            $('section').css('min-height', '400px'); 
        }
        else if {
            //Some more sizing code...
        }
    }
    
    $(window).resize(function() {
        changeSize();
    });
    

    You would need to set the conditions in the if statements based on your needs, but this method should do it.