2

有谁知道为什么这个神秘的边缘是? 这是我网站的链接

我已经尝试了一切!关闭和打开所有边距并使用填充,但我找不到问题为什么会出现水平滑块?

感谢大家的帮助!

4

6 回答 6

2

您的 css中有一个非常重要的错字:

body{
    marign: 0px;
    background-color: #e6e6e6;
    width: 100%;
    height: 100%;
}

边距拼写错误。

为了消除出现的一些奇怪的边距,我建议将其添加到您的代码中:

body {
   margin-top: 0px;
   margin-right: 0px;
   margin-bottom: 0px;
   margin-left: 0px;
}

通常是一个非常安全的赌注,可以消除一些不必要的利润,并解决您的问题。我知道你到处都有一些边距,但从你的帖子中我们很难理解你试图消除哪些边距。

于 2013-07-31T11:53:43.613 回答
1

它在fg_membersite.css 第 5 行

body {
    background-color: rgb(230, 230, 230);
    width: 100%;
    height: 100%;
}

更改为:

body {
    background-color: rgb(230, 230, 230);
}
于 2013-07-31T11:51:10.850 回答
1

使用此代码:

body {
   margin-top: 0px;
   margin-right: 0px;
   margin-bottom: 0px;
   margin-left: 0px;
}

可能对你有帮助

于 2013-07-31T11:55:21.907 回答
0
.ads {
width: 160px;
height: 600px;
background-color: orange;
float: right;
}
.content {
margin-top: 50px;
width: 100%;
height: 100%;
}
于 2013-07-31T11:56:01.693 回答
0

我总是做什么来防止这种边距/填充:

* {
padding:0;
margin:0 auto;
}

它只是为每个元素提供标准的 0 边距和填充,除非您当然为每个元素更改它。

于 2013-07-31T12:07:57.987 回答
0

修复 jdero 所说的“body {marign ...}”错字,你的单杠就会消失。不过,您不需要将所有边距顶部、底部等设置为 0。修正错字后,您将拥有正文 {margin : 0px}。这就是将它们全部设置为 0 所需的全部内容。

于 2013-07-31T12:08:56.470 回答