Div height 100% and expands to fit content

后端 未结 15 927
攒了一身酷
攒了一身酷 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:23

    Just add these two line in your css id #some_div

    display: block;
    overflow: auto;
    

    After that you will get what your are looking for !

提交回复
热议问题