我想创建一个颜色阻止的网页,但是当使用带有背景的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
谢谢它提前!
答案 0 :(得分:0)
将您的身体边距设为0;
body {
margin: 0;
padding: 0;
}
答案 1 :(得分:0)
div{
position:fixed;
top:0px;
left:0px;
width:100%;
height:100%;
}
div的风格。试试这个。通常这用于制作弹出窗口。