How to force child div to be 100% of parent div's height without specifying parent's height?

前端 未结 26 2002
刺人心
刺人心 2020-11-22 06:52

I have a site with the following structure:

<
26条回答
  •  温柔的废话
    2020-11-22 07:25

    After long searching and try, nothing solved my problem except

    style = "height:100%;"
    

    on the children div

    and for parent apply this

    .parent {
        display: flex;
        flex-direction: column;
    }
    

    also, I am using bootstrap and this did not corrupt the responsive for me.

提交回复
热议问题