Get a div to go across the whole page

后端 未结 6 2075
刺人心
刺人心 2021-01-06 03:30

Whenever i try to make a div with width 100%, it does not go across the whole page, it leaves small margins on either side(top bottom left and right), i would like the div

6条回答
  •  鱼传尺愫
    2021-01-06 04:13

    This is a body margin from the browser reset margin and padding:

    body {
        margin: 0;
        padding: 0;
    }
    

提交回复
热议问题