Div height 100% and expands to fit content

后端 未结 15 942
攒了一身酷
攒了一身酷 2020-11-29 15:51

I have a div element on my page with its height set to 100%. The height of the body is also set to 100%. The inner div has a background and all that and is different from t

15条回答
  •  借酒劲吻你
    2020-11-29 16:29

    Even you can do like this

    display:block;
    overflow:auto;
    height: 100%;
    

    This will include your each dynamic div as per the content. Suppose if you have a common div with class it will increase height of each dynamic div according to the content

提交回复
热议问题