盒子宽度100%(letup)

时间:2013-03-06 11:26:32

标签: css

正如你所看到的(p1)我有2毫米的让步,但在例子中(p2)他们没有得到任何让步。我需要做些什么来解决它?

P1

enter image description here

P2

enter image description here

我的css例子:

#head
{
    background: none repeat scroll 0 0 #3D6AA2;
    height: 44px;
}

2 个答案:

答案 0 :(得分:4)

从身体中移除边距和填充:

body {
     margin: 0;
     padding: 0;

}

答案 1 :(得分:4)

只需将html正文边距设置为零像素。

body {margin: 0}

如果你想/需要居中任何包含的DIV(不是100%)使用;

body {margin: 0 auto}