How to make the web page height to fit screen height

前端 未结 6 2012
小蘑菇
小蘑菇 2020-11-30 06:50

I need to make my web page height to fit the height of the screen size without scrolling.

HTML


    
6条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-30 06:54

    you can use css to set the body tag to these settings:

    body
    {
    padding:0px;
    margin:0px;
    width:100%;
    height:100%;
    }
    

提交回复
热议问题