이 중첩 된 div가 있고 내부의 DIV를 수용하기 위해 확장 할 메인 컨테이너가 필요합니다 (높이).
<!-- 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
모든 내부 div를 수용하기 위해 늘어나지 않고 결과가 계속 배경에 도달한다는 것입니다.
위 시나리오를 고려하여이 문제를 어떻게 해결할 수 있습니까?
<strong>Edited</strong>$Reason_for_revising_question...
합니다. 주요 변경 또는 추가 사항이있는 경우 변경 사항을 반영하기 위해 질문 제목을 변경해야 할 수도 있습니다. =)
div
태그를 닫지 않았습니다 id='container'
. 일부 문제가 발생할 수 있습니다.
.clear
클래스에 대한 CSS도 없습니다 . 잊었습니까, 아니면 원래 코드에 있습니까? @jennyfofenny가 답변에서 언급했듯이 그 .clear
수업 br
은 매우 중요합니다.