所以有一个 div 基本上是页面的主要内容,但它不会延伸到它内部内容的底部。我尝试了很多不同的东西,但不确定我是否有错误的 CSS 属性组合以使其正确显示。有人请提供解释。下面是html和css。
<html>
<head>
<title></title>
<style type="text/css">
body{
font-family: 'Raleway', sans-serif;
height:100%;
position:relative;
background:url("../image/la_woodlands.jpg");
background-repeat:no-repeat;
background-size:100% 100%;
background-attachment: fixed;
overflow-x:hidden;
}
.main_content_wrapper{
position:relative;
}
.content_container{
position:relative;
left:50%;
top:0;
margin-left:-480px;
width:920px;
padding:30px 20px;
height:100%;
display:block;
background:rgba(41,41,41,.8);
}
.content_section_header{
position:relative;
top:20px;
}
</style>
</head>
<body>
<div class="main_content_wrapper">
<div class="content_container">
<h1 class="align_center"></h1>
<div class="content_section_header">
<h1 class="align_center times">Catalog</h1>
<div class="catalog_navigation">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
<h1>fjebgrewgre</h1>
</div>
</div>
</body>
</html>