日期:2014-05-18  浏览次数:20427 次

__________怎樣消除div與div之間的間隔?
我網頁裡有幾個div,div與div之間都有間隔,請問我怎樣去年這個間隔,我想他們都緊密的挨在一起。

謝謝!

------解决方案--------------------
设置css,把它们style的margin设为0
------解决方案--------------------
看看 是不是这意思
<div id= "mainDiv ">
<div id= "calendarDiv "> </div>
<div id= "titleDiv "> </div>
<div id= "contentDiv "> </div>
</div>

<style>
#calendarDiv
{
float:left;
background:#c3d9ff;
width:200px;
height:230px;
margin:0px 0px 0px 0px;
}
#titleDiv {
float:left;
background:#c3d9ff;
width:746px;
height:50px;
margin:0px 0px 0px 0px;
}
#contentDiv {
float:left;
background:#c3d9ff;
width:720px;
height:500px;
margin:0px 0px 0px 0px;

</style>