码迷,mamicode.com
首页 > Web开发 > 详细

html表格合并(行,列)

时间:2014-08-05 09:40:48      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:html表格合并   行合并   列合并   

<table>
    <tr>
        <td colspan="2">失败的实例:</td>
    </tr>

    {% for ip , jieguo in reason.iteritems() %}
    <tr>
        <td colspan="2">{{ ip }}</td>
    </tr>

    {% for l, r in  jieguo.iteritems() %}
    <tr>
        <td>{{ l }}</td>
        <td>{{ r }}</td>
    </tr>
    {% end %}

    {% end %}
</table>

bubuko.com,布布扣

上面是列合并


下面是行合并

<table>
    <tr>
        <th rowspan="2"></th>
    </tr>
</table>


html表格合并(行,列),布布扣,bubuko.com

html表格合并(行,列)

标签:html表格合并   行合并   列合并   

原文地址:http://blog.csdn.net/smallfish1983/article/details/38379111

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!