所以我刚刚发现了 css3columns
规范,并立即看到我可以使用它来“现代化”我的论坛列表,该列表使用动态生成的表格。
生成表的代码非常复杂,因为它自己决定是否将下一个数据库行的数据放入表中的新行或新列中。使用 css3 列的方式,我假设我可以简单地让代码将数据读入页面并让 css3 决定应该进入哪一列。
不过,我遇到了一些问题。使用它时,内容不会跨指定数量的列进行拆分。
这里有一些代码供参考:
.2col {
column-count: 2;
column-width: 400px;
column-gap: 10px;
column-rule: 1px solid #e1e1e1;
}
<div class="cats 2col">
<div class="title">
<div class="t">
<h2><a href="#" class="sh" id="t1">-</a> Title 1</h2>
</div>
<section>
<div class="cat">
<p>Category 1<span>This is the first category</p>
</div>
<div class="cat">
<p>Category 2<span>This is the second category</p>
</div>
<div class="cat">
<p>Category 3<span>This is the third category</p>
</div>
</section>
</div>
<div class="title">
<div class="t">
<h2><a href="#" class="sh" id="t1">-</a> Title 2</h2>
</div>
<section>
<div class="cat">
<p>Category 1<span>This is the first category</p>
</div>
<div class="cat">
<p>Category 2<span>This is the second category</p>
</div>
</section>
</div>
</div>
我设置了这个 JSFiddle 进行测试:http: //jsfiddle.net/LYoung/JLVEs/1/
显然我做错了什么。谁能帮我确定那是什么以及为什么错了?