获得两列相同的背景和长度

时间:2014-01-25 14:00:20

标签: html css

我正在尝试让主要内容区域和侧边栏具有相同的背景和相同的高度。我认为如果我在同一个<div>中的两个子类,它会起作用,但显然它不起作用。有没有一种简单的方法来实现这一点,或者我是否必须去寻找一些虚假的专栏技巧?

HTML:

<body>
<div id="wrapper">
        <div id="header">
        <h1>Page title</h1>
        <h3>Subtitle</h3>
    </div>
    <div id="main">
        <div class="content">This is the main area</div>
        <div class="sidebar">This is the sidebar</div>
    </div>
    <div id="footer">
        The footer;
    </div>
</div>
</body>
</html>

CSS:

body {
margin: 0;
padding: 0;
background-color: #ff1;
}

#wrapper {
width: 800px;
margin: 0 auto;
}

#header {
background-color: rgba(255,255,255,0.7);
}

#nav {
background-color: rgba(255,255,255,0.7);
}

#main {
background-color: rgba(255,255,255,0.7);
}

.content, .sidebar {
float: left;
padding: 20px;
}

.content {
width: 510px;   
}

.sidebar {
width: 210px;
}

#footer {
background-color: rgba(255,255,255,0.7);
clear:both;
}

Fiddle

2 个答案:

答案 0 :(得分:3)

包装容器(#main)不会扩展到子元素的高度,因为它们都是浮动的。您可以添加clearfix或仅

overflow: auto;

到#main元素。

答案 1 :(得分:0)

在jsfiddle中,似乎它们具有相同的高度和背景。 我错过了什么吗?