How can I stretch a div to 100% page height?

前端 未结 10 1281
一生所求
一生所求 2021-02-06 17:56

    
        

        

    
        
10条回答
  •  粉色の甜心
    2021-02-06 18:56

    Use:

    {
        position: absolute;
        top: 0px;
        bottom: 0px;
        padding: 0px;
        margin: 0px;
    }
    

    This way, it will be centered and cover the page if it is longer than one browser view long.

提交回复
热议问题