Divs相互连接

时间:2014-05-26 20:56:18

标签: html css

我目前在使用css布局时出现问题: http://jsfiddle.net/XB2r7/1/

.content {
margin-right: auto;
margin-left: auto;
background-color:rgba(64,64,64,0.9);
width: 1000px;
height: auto;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
border: 1px solid #333;
color: #fff;
overflow: auto;
margin-bottom: 20px;
box-shadow: 0px 1px 1px #333;
}
.sidebar {
width: 23.5%;
height: auto;
display: block;
float: left;
color: #000;
padding-left: 5px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
background-color: rgba(255,255,255,0.9);
}
.content2 {
width: 73.5%;
height: auto;
display: block;
float: right;
color: #000;
padding-left: 5px;
padding-top: 5px;
padding-right: 5px;
padding-bottom: 5px;
background-color: rgba(255,255,255,0.9);
}
.h1 {
font-weight: bold;
}
.content hr {
border: 0;
height: 2px;
background: url('bg3.jpg');
}

正如你在JSFiddle看到的那样,两个侧边栏相互连接,显然我不希望这种情况发生,我该如何解决?

1 个答案:

答案 0 :(得分:3)

你可以在侧边栏中添加一些margin-bottom;来" disonnect"他们彼此。

<强> DEMO

(将margin-bottom : 10px;添加到.sidebar

或者,如果您只想将最后.sidebar分开,可以添加

.sidebar:last-child {
    margin-top: 10px;
}

<强> DEMO