Making html and body stretch to 100% height and more if the page scrolls

后端 未结 6 646
别跟我提以往
别跟我提以往 2020-12-18 22:08

I want to make my and tags be the entire height of the viewport if the page isn\'t tall enough to warrant scrolling, or t

6条回答
  •  暖寄归人
    2020-12-18 22:39

    Have you tried:

    min-height: 100vh;
    

    That should set the height of the elements to the viewport and if they go beyond, it will have a scrollbar, here is an example:

    http://codepen.io/r3plica/pen/jBaPYB

提交回复
热议问题