How to make div scale vertically all the way down?

后端 未结 7 724
没有蜡笔的小新
没有蜡笔的小新 2020-12-31 22:35

I have the following situation, presented in the picture. Grey div is the parent of magenta and blue divs. Magenta div scales vertically with the content. I would like to ha

7条回答
  •  一生所求
    2020-12-31 23:10

    I got this to work (in Chrome anyway) by setting the parent's div:

    position: absolute;
    

    and the child's div:

    height: 100%;
    

提交回复
热议问题