我有一个容器DIV(block2),它有2个子div(标题和内容),容器的高度应该适应这些子标签。
但是,为容器div指定的底边距不会显示,因为它的高度是动态的。我没有任何浮动元素(尝试使用clear:两个样式div也不起作用)。
这是我的CSS: ('详细信息'是'内容'中的表格) 请原谅我笨拙的代码。 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的下边距?有什么建议吗?
答案 0 :(得分:0)
将您的容器插入另一个<div id=#wrapper>
并再次向#block2 {margin-bottom:2px;}