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

后端 未结 4 1060
孤独总比滥情好
孤独总比滥情好 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:30

    you need to set overflow for the main div. overflow: auto; this will force the div container to expand and adapt to the content.

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

提交回复
热议问题