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

后端 未结 6 640
别跟我提以往
别跟我提以往 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:23

    You will need to specify the overflow attribute for the particular div. It will make sure your content is shown even when page is scrolled or content is more.

    div {
        overflow:scroll;
    }
    

提交回复
热议问题