Make body have 100% of the browser height

后端 未结 21 1341
离开以前
离开以前 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条回答
  •  -上瘾入骨i
    2020-11-22 00:36

    Here Update

    html
      {
        height:100%;
      }
    
    body{
         min-height: 100%;
         position:absolute;
         margin:0;
         padding:0; 
    }
    

提交回复
热议问题