position: fixed caused element to be wider than browser

前端 未结 6 2674
独厮守ぢ
独厮守ぢ 2021-02-20 13:04

Can anyone tell me why position:fixed cause the element to be wider than the browser or other content on the page and causing horizontal scrolling?

Here is the code HTML

6条回答
  •  野的像风
    2021-02-20 13:58

    By default the body tag have margin.
    Try this in your stylesheet:

    body{
      margin: 0;
    }
    

提交回复
热议问题