0

我有一个容器 DIV(block2),它有 2 个子 div(标题和内容),容器的高度应该适应这些子标签。

但是,为容器 div 指定的下边距不会出现,因为它的高度是动态的。我没有任何浮动元素(尝试使用 clear:both style div 也无效)。

这是我的CSS:('details'是'content'中的表格)请原谅我笨拙的代码。CSS 新手。

#block2 {
width: 91%;
height: auto;
background: #c9b18b;
margin: -1px auto 0px auto;
padding-top: 1px;
}

#headline {
background: #70a3be;
height: 300px;
margin: 13px 13px 12px 13px;
}

#headline h1 {
float:right;
margin-top: 10px;
padding-right:55px;
font-size: 425%;
font-weight: bold;
text-align: right;
font-family: arial, sans-serif;
color: #005480;
}

#content {
background: #FFFFFF;
height: 300px;
margin: -1px 13px 13px 13px;
padding-top: 1px;
}

#details
{
width: 97%;
margin: 50px 0px 15px 15px;
border-collapse: collapse;
}

#details td {
padding: 10px;
}

#details tr.odd {
font-family: Arial, Helvetica, sans-serif;
font-size: x-large;
font-weight: bold;
background-color: #d9e6ee;
color: #005480; 
border-top: 4px solid #6578b2;
border-bottom: 4px solid #6578b2;
}

#details tr.even {
font-family: Arial, Helvetica, sans-serif;
font-size:x-large;
font-weight: bold;
background-color: #ffffff;
color: #005480;
}

#details tr.header {
font-family: arial;
font-weight: bold;
font-size: 1.6em;
}

#details a {
text-decoration: none;
color: #005480;
}

#details td.region {width: 13%;}

#details td.city {width: 17%;}

#details td.topic {width: 40%;}

#details td.date {width: 15%;}

如何让 block2 的下边距出现?有什么建议么?

4

1 回答 1

0

将您的容器插入另一个容器<div id=#wrapper>并再次提供单独的 css#block2 {margin-bottom:2px;}

于 2013-08-30T15:28:42.717 回答