答案 0 :(得分:2)
另一种方法是更实用,即创建三个样式为float: left
和width: 33%
的div标记。
这是一个关于它是如何工作的演示。
我所做的大图是:
<强> HTML 强>
<div class="colContainer">
<div class="col">
// content goes here
</div>
<div class="col">
// content goes here
</div>
<div class="col">
// content goes here
</div>
</div>
<强> CSS 强>
.colContainer{
float:left;
width:100%;
}
.col{
float:left;
width:33%; /*or 33.3% if you want to be more precise*/
}
答案 1 :(得分:0)
添加: 你div下的第一个h2标签有一些默认的保证金值:
.not h2 {
margin: 0;
}