How to make a parent div grow with its children?

前端 未结 5 931
盖世英雄少女心
盖世英雄少女心 2020-12-30 00:49

How do I make a parent/container DIV grow as more children DIV\'s are added.

5条回答
  •  北海茫月
    2020-12-30 01:21

    Using display:table in the parent div makes it grow even if its contents are floating elements. It makes the div behave like a table, basically.

    Take a look to the display properties: http://www.w3.org/wiki/CSS/Properties/display

提交回复
热议问题