我的 html/css 代码在这里需要一点帮助...我需要跟随 divbody 的高度到 divwrapper,因为 divwrapper 向左浮动,所以我的 divbody 的高度只有 10(填充值为 5px)。这是代码,谢谢!
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Information Technology</title>
</head>
<style>
body{
margin:0px;
}
.divbody{
width:970px;
height:auto;
background-color:#cecece;
margin:0px auto;
padding:5px;
}
.divwrapper{
height:auto;
background-color:#eee;
float:left;
padding:5px;
}
.divcontent{
width:480px;
height:200px;
background-color:yellow;
float:left;
border-bottom:1px solid #000;
}
</style>
<body>
<div class="divbody">
<div class="divwrapper">
<div class="divcontent">
</div>
<div class="divcontent">
</div>
</div>
</div>
</body>