惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog
WordPress大学
WordPress大学
Jina AI
Jina AI
小众软件
小众软件
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
G
Google Developers Blog
C
Check Point Blog
月光博客
月光博客
L
LangChain Blog
GbyAI
GbyAI

博客园 - litsword

[转]IDENT_CURRENT、SCOPE_IDENTITY、@@IDENTITY 差異對照表 [转贴]TFS Power Tools–September 2010 Release SQL 中使用正则表达式过滤字母或数字 [转载]记不住ASP.NET页面生命周期的苦恼 Split Full Name as First and Last 动态加载配置文件 [转载]实现PadLeft的SQL脚本 Useful SQL script 在Update 和 Delete语句中使用 Inner Join SQL游标遍历时的变量赋值 SQL Date Time format SCOPE_IDENTITY、IDENT_CURRENT 和 @@IDENTITY 的区别 Union合并数组(去掉重复的项目) Winform 版本信息 Sql语句 生日提醒 事件的定义 【原创】RSS开发心得小结 SQL数据类型nchar,char,varchar与nvarchar区别 JavaScript里面三个等号和两个等号的区别
HTML 合并单元格示例
litsword · 2012-11-16 · via 博客园 - litsword
<table border="1">
        <tr>
            <th rowspan="2">
                值班人员
            </th>
            <th>
                星期一
            </th>
            <th>
                星期二
            </th>
            <th>
                星期三
            </th>
        </tr>
        <tr>
            <td>
                李强
            </td>
            <td>
                张明
            </td>
            <td>
                王平
            </td>
        </tr>
    </table>
    <table border="1">
        <tr>
            <th colspan="3">
                值班人员
            </th>
        </tr>
        <tr>
            <th>
                星期一
            </th>
            <th>
                星期二
            </th>
            <th>
                星期三
            </th>
        </tr>
        <tr>
            <td>
                李强
            </td>
            <td>
                张明
            </td>
            <td>
                王平
            </td>
        </tr>
    </table>

 效果如下:

值班人员星期一星期二星期三
李强 张明 王平
值班人员
星期一星期二星期三
李强 张明 王平

posted @ 2012-11-16 16:54  litsword  阅读(281)  评论(0)    收藏  举报