2

如何消除 div 左右两侧的空白。

#foot_text {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    width: 500px;
    margin: auto;
    padding-top:1px;
}

#foot_wrap {
    width:100%;
    height:60px;
    background-color:#999999;
    min-height:40px !important;
}

html:

<div id="foot_wrap"></div>
<div id="foot_text"></div>
4

4 回答 4

2

现场演示

嗨,现在写这个 CSS

.foot_wrap, body{
margin:0;
}

用于css 重置您的布局

于 2012-10-29T11:51:47.100 回答
1

您的问题可能不在于 div,而在于 body 标签。因为我认为正文标签不会通过整页传播。使margin你的身体零。

<body style="margin:0px;">

于 2012-10-29T11:57:34.433 回答
1

如果#foot_wrapDivision 是标签的子body标签,请确保您已将边距、填充设置body为 0

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

如果没有,请查看其父元素和上面的属性。

于 2012-10-29T12:01:11.373 回答
0

请试试这个

padding-left:0px;
padding-right:0px;
margin-left:0px;
margin-right:0px;
于 2012-10-29T11:50:46.173 回答