Fill remaining vertical space - only CSS

前端 未结 9 1429
日久生厌
日久生厌 2020-11-28 09:15

I need to fill the remaining vertical space of #wrapper under #first with #second div.

I need an only CSS sol

9条回答
  •  情话喂你
    2020-11-28 09:34

    Have you tried changing the wrapper height to vh instead of %?

    #wrapper {
    width:300px;
    height:100vh;
    }
    

    That worked great for me when I wanted to fill my page with a gradient background for instance...

提交回复
热议问题