【发布时间】:2013-06-13 18:13:38
【问题描述】:
这是我用来制作列的 CSS
<style>
h1{background-color:black;
color: white;
}
.columnA{f
float: left;
width: 70%;
margin:0;
}
.columnB{
float: right;
width:30%;
margin: 0;
}
div.clear{clear:both;}
</style>
这里是 HTML
<div class="container">
<div class="columnA">
Lorem ipsum dolor sit amet
</div>
<div class="columnB">
Test 1<br>
Test 2
</div>
</div>
看起来第二个 div 不会向上移动。我试过 float: left too。
【问题讨论】:
标签: html css multiple-columns