This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center
                            
                        
                    
                
                                7年前关闭。
            
                    
http://willryan.us

如果调整浏览器的大小,您会看到页面的左侧稍微偏离边缘,但右侧没有。我认为我在任何内容上都没有剩余的余量,这是我唯一想到的可能是造成这种情况的原因。有任何想法吗?

最佳答案

您的<body>没有指定填充或边距,因此默认为浏览器的默认值。例如,在Chrome中,页边距为8px



将页边距和填充设置为0,布局的左侧与浏览器窗口的左边缘齐平。

body {
  margin: 0;
  padding: 0;
}

关于javascript - 我网站上这种神秘的左边距是怎么回事?为什么它不与浏览器的左边缘齐平? ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11812924/

10-09 14:54