Inner left-floating div's do not expand the container div vertically

后端 未结 4 1058
孤独总比滥情好
孤独总比滥情好 2021-01-03 20:52

I have a container div with the following attributes:

#cat_container{
margin:0;
padding:5px;
border:1px solid red;
min-height:200px;
}

Insi

4条回答
  •  一生所求
    2021-01-03 21:25

    container{
        overflow: auto;
    }
    

    Insert the following at the end, before the enclosing the container

    The container will automatically expand to the the last clear:both

提交回复
热议问题