How to remove white space left and right side of page?

后端 未结 4 1632
逝去的感伤
逝去的感伤 2020-12-12 04:41

I am trying to make a footer, but the left and right sides show some white space. How to remove the white space?

Here is my code:




        
4条回答
  •  隐瞒了意图╮
    2020-12-12 05:14

    Most Web browsers have different default settings for the base margins and padding. This means that if you don't set a margin and padding on your body and html tags, you could get inconsistent results on the page depending upon which browser you're using to view the page.

    The best way to solve this is to set all the margins and paddings on the html and body tags to 0:

    html, body {
        margin: 0px;
        padding: 0px;
    } 
    

提交回复
热议问题