一些基本的css-float问题,我自己无法解决,所以我会感激任何帮助。
我想要向左移动3个容器,向右移3个 - 这就是全部。容器的高度由其内容设定。
.float-left {
float: left;
margin-top: 26px;
background-color: #6abe0f;
width: 416px;
color: #3e3e3e;
}
.float-right {
float: right;
margin-top: 26px;
background-color: #6abe0f;
width: 416px;
color: #3e3e3e;
}
http://jsfiddle.net/hausmaster/TZhWy/5/
非常感谢!
答案 0 :(得分:0)
尝试这一个,在每行中插入divider div
<div class="divider"></div>
.divider {
width:832px;
float:left;
height:30px;
}
答案 1 :(得分:0)
尝试.float-left { clear: left; }
。
或者将它们放入行中,然后使用overflow:hidden;
<div class="row">
<div class="float-left>I go left</div>
<div class="float-right>I go right</div>
</div>