How to make the height REALLY 100%

后端 未结 6 2044
一生所求
一生所求 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:38

    I will complete everyones answer....You need to make a style for the body and apply a margin:0; padding:0;

    like this:

    body{
     margin:0;
     padding:0;
    }
    

    after this you can apply a width:100% and a height:100% to every DIV you like.

    good luck

提交回复
热议问题