Body height 100% displaying vertical scrollbar

后端 未结 13 2146
予麋鹿
予麋鹿 2020-12-07 21:48

Out of curiosity, considering the example below, why does having the margin on the #container div cause a vertical scrollbar to appear in the browser? The container is much

13条回答
  •  爱一瞬间的悲伤
    2020-12-07 22:34

    /*removes default margin & padding*/
    html, body{
        padding: 0px !important;
        margin: 0px !important;
    }
    
    /*sets body height to max; and allows scrollbar as page content grows*/
    body{
        min-height: 100vh;
    }
    

提交回复
热议问题