Make body have 100% of the browser height

后端 未结 21 1636
离开以前
离开以前 2020-11-22 00:26

I want to make body have 100% of the browser height. Can I do that using CSS?

I tried setting height: 100%, but it doesn\'t work.

I want to set

21条回答
  •  日久生厌
    2020-11-22 00:57

    A quick update

    html, body{
        min-height:100%;
        overflow:auto;
    }
    

    A better solution with today's CSS

    html, body{ 
      min-height: 100vh;
      overflow: auto;
    }
    

提交回复
热议问题