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

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point Blog

噜啦 - 单元格

垂直合并单元格 rowspan - 噜啦 垂直合并单元格 rowspan - 噜啦 水平合并单元格 - 噜啦
水平合并单元格 - 噜啦
博主: 噜啦 · 2019-07-05 · via 噜啦 - 单元格

水平合并单元格

  1. 首页
  2. 正文  
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <table border="1px" cellspacing="0" align="center">
            <!-- 需求:“个人简历居中”
                解决方法:水平合并单元格
                关键:搞清楚谁和谁合并
                注意:colspan里面的值是u所有合并单元格的个数
             -->
            <tr>
                
                <td colspan="5" align="center">个人简历</td>
                <!-- <td></td>
                <td></td>
                <td></td>
                <td></td> -->
            </tr>
            
            <tr>
                <td>姓名</td>
                <td>张三</td>
                <td>出生年月</td>
                <td>19991002</td>
                <td><img src="" ></td>
            </tr>
        </table>
        
        
        
    </body>
</html>

最后修改:2019 年 07 月 05 日

© 允许规范转载

水平合并单元格

 •