2014-11-24 62 views

回答

0

如果你想严格按照你的Dropbox设计,使用rowspan的和引导表columnspan

诀窍创建一个12列类似于引导网格结构的表格,并相应地放置您的内容。

<table> 
<tbody> 
    <tr> 
    <td colspan=6>Grid 1</td> 
    <td colspan=6><div>Grid 2</div></td> 
    </tr> 
    <tr> 
    <td colspan=12><div>Grid 3</div></td> 
    </tr> 
</tbody> 
</table>