Should we use both overflow: hidden and display:inline?
        Posted  
        
            by metal-gear-solid
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by metal-gear-solid
        
        
        
        Published on 2010-05-29T04:49:23Z
        Indexed on 
            2010/05/29
            4:52 UTC
        
        
        Read the original article
        Hit count: 244
        
For floated elements should we always define display:inline along with overflow:hidden, when we clear float using overflow:hidden?
#secondary-col {
float:left;
overflow:hidden;
display:inline;
}
© Stack Overflow or respective owner