How to make the height REALLY 100%

后端 未结 6 2026
一生所求
一生所求 2021-01-15 03:29

in CSS when you set something\'s width or height to 100% it really only sets it to 100% of the browser window. Is there any way to make it 100% of the whole page?

Le

6条回答
  •  时光说笑
    2021-01-15 03:54

    Simply apply position:fixed to the element. If this is an overlay:

    #overlay 
    {
        position: fixed;
        top: 0;
        left: 0;
        width:100%;
        height:100%; 
    }
    

    Note: fixed is not supported by IE6

提交回复
热议问题