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

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

    
        

        

    
        
10条回答
  •  有刺的猬
    2021-02-06 18:47

    Try (it should work in most browsers):

    .100PercentHeight, html, body {
        height : auto !important; /* Ignored by Internet Explorer, applied everywhere else. */
        height : 100%;            /* Internet Explorer treats as min-height. */
        min-height : 100%;        /* Internet Explorer ignores this. */
    }
    

提交回复
热议问题