如何获得一个div来填充整个页面的宽度?

时间:2014-02-15 15:20:14

标签: css html

我想创建一个颜色阻止的网页,但是当使用带有背景的DIV时,屏幕边缘之间会有空格!

以下是代码:http://jsfiddle.net/espevoir/mBgyM/

<div class="one">hi</div>
<div class="two">hi</div>
.one {
width: 100%;
height: 1000px;
background-color: Navy;
}

.two {
width: 100%;
height: 1000px;
background: Red;
}

帮助? :3

谢谢它提前!

2 个答案:

答案 0 :(得分:0)

将您的身体边距设为0;

body {
    margin: 0;
    padding: 0;
}

答案 1 :(得分:0)

div{
position:fixed;
top:0px;
left:0px;
width:100%;
height:100%;
}

div的风格。试试这个。通常这用于制作弹出窗口。