Fill remaining vertical space - only CSS

前端 未结 9 1436
日久生厌
日久生厌 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:33

    Flexbox solution

    html, body {
      height: 100%;
    }
    
    .wrapper {
      display: flex;
      flex-direction: column;
      width: 300px;
      height: 100%;
    }
    
    .first {
      height: 50px;
    }
    
    .second {
      flex-grow: 1;
    }
    First
    Second

提交回复
热议问题