ฉันมี div ที่ซ้อนกันเหล่านี้และฉันต้องการคอนเทนเนอร์หลักเพื่อขยาย (สูง) เพื่อรองรับ DIVs ภายใน
<!-- head -->
...
<!-- /head -->
<body class="main">
<div id="container">
<div id="header">
<!--series of divs in here, graphic banner etc. -->
</div>
<div id="main_content"> <!-- this DIV _should_ stretch to accommodate inner divs -->
<div id="items_list" class="items_list ui-sortable">
<div id="item_35" class="item_details">
</div>
<div id="item_36" class="item_details">
</div>
<div id="item_37" class="item_details">
</div>
<!-- this list of DIVs "item_xx" goes on for a while
each one representing a photo with name, caption etcetc -->
</div>
</div>
<br class="clear"/>
<div id="footer">
</div>
</body>
</html>
CSS คือ:
* {
padding: 0;
margin: 0;
}
.main {
font: 100% Verdana, Arial, Helvetica, sans-serif;
background: #4c5462;
margin: 0;
padding: 0;
text-align: center;
color: #000000;
}
.main #container {
height: auto;
width: 46em;
background: #4c5462;
margin: 0 auto;
border: 0px solid #000000;
text-align: left;
}
.main #main_content {
padding: 5px;
margin: 0px;
}
#items_list {
width: 400px;
float: left;
}
.items_list {
width: 400px;
float: left;
}
.item_details {
margin-top: 3px;
margin-bottom: 3px;
padding: 3px;
float: left;
border-bottom: 0.5px solid blue;
}
ปัญหาที่ฉันมีคือมัน#main_content
ไม่ได้ยืดออกเพื่อรองรับ divs ด้านในทั้งหมดด้วยผลลัพธ์ที่พวกเขาทำกับพื้นหลัง
ฉันจะแก้ปัญหานี้โดยพิจารณาสถานการณ์ข้างต้นได้อย่างไร
<strong>Edited</strong>$Reason_for_revising_question...
คุณอาจจำเป็นต้องเปลี่ยนชื่อคำถามเพื่อแสดงถึงการเปลี่ยนแปลงหากมีการเปลี่ยนแปลงครั้งสำคัญหรือมีการเน้นเพิ่มเติม =)
div
id='container'
ที่อาจทำให้เกิดปัญหาบางอย่าง
.clear
คลาส คุณลืมมันหรือมันเป็นรหัสต้นฉบับของคุณ? .clear
ชั้นบนที่br
เป็นสิ่งสำคัญมาก @jennyfofenny กล่าวถึงในคำตอบของพวกเขา