#header 位于浏览器顶部,没有空格。但是当我添加这个#buttons div 时,它会按下标题,在顶部创建大约半英寸的空白空间?我怎样才能取出顶部的空间?
CSS
#body { margin: 0;}
#container {width:776px; height: 614;}
#content {margin-left: 40px; margin-top: -24px; width: 601px; height: 614;}
#buttons {margin-top: 70px;}
#header {position:absolute; margin-top: 0; height: 57px; width: 776px; background: url(images/headerbg.jpg) no-repeat;
HTML
<div id="container">
<div id="header"> </div>
<div id="navbar"> </div>
<div id="content">
<div id="buttons"> <img src="images/btn_intro.gif" /></div>
</div>