我正在整理一个 Tumblr 布局,但遇到了障碍。我让一切正常,但是一旦我添加了侧边栏,容器就停止扩展页面的高度。它停在侧边栏的末尾,我不知道为什么以前它扩展了内容部分的宽度。
网址: http: //nellyswritingroom.tumblr.com/
结构 CSS:
#container {
margin: 0 auto;
padding: 30px 60px 30px 60px;
width: 900px;
}
#main {
margin-top: 50px;
}
#content {
width: 620px;
float: left;
margin: 0;
}
aside {
width: 220px;
float: left;
margin-left: 60px;
}
header#top {
text-align: center;
height: 293px;
margin-bottom: 8px;
}
header#top h1{
position:relative;
width:500px;
height:285px;
overflow:hidden;
float:left;
}
header#top h2 {
position:relative;
width:400px;
height:285px;
overflow:hidden;
float:left;
}
HTML 骨架:
<div id="container">
<header id="top>
<h1>
content
</h1>
<h2>
content
</h2>
</header>
<nav>Nav Goes here</nav>
<section id="content">
Content on the left
</section>
<aside>
Sidebar Content
</aside>
</div>
任何帮助将不胜感激!