Why does 100% not mean 100% height?

前端 未结 6 1894
南方客
南方客 2020-12-03 06:05

I am trying to get some divss to expand to fill the screen, but I am struggling. I have broken down the issue on this jsfiddle.

What I really want to kn

6条回答
  •  有刺的猬
    2020-12-03 06:27

    This will work

       body, html {
          height: 100vh;
        }
    
        aside {
          background: green;
          width: 200px;
          height: 100vh;
        }
    

提交回复
热议问题