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

html表格合并(行,一排)

时间:2015-10-15 14:33:10      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

<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>

技术分享

上面是列合并


以下是行合并

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


版权声明:本文博主原创文章。博客,未经同意不得转载。

html表格合并(行,一排)

标签:

原文地址:http://www.cnblogs.com/hrhguanli/p/4882126.html

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