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

推荐订阅源

L
LINUX DO - 热门话题
Stack Overflow Blog
Stack Overflow Blog
B
Blog
WordPress大学
WordPress大学
Project Zero
Project Zero
P
Palo Alto Networks Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
T
Tailwind CSS Blog
Forbes - Security
Forbes - Security
F
Full Disclosure
SecWiki News
SecWiki News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hacker News: Ask HN
Hacker News: Ask HN
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
F
Fortinet All Blogs
Cisco Talos Blog
Cisco Talos Blog
G
Google Developers Blog
J
Java Code Geeks
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Recorded Future
Recorded Future
O
OpenAI News
Spread Privacy
Spread Privacy
MongoDB | Blog
MongoDB | Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
C
Cybersecurity and Infrastructure Security Agency CISA
S
Securelist
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
IT之家
IT之家
U
Unit 42
腾讯CDC
S
Security Affairs
C
Cisco Blogs
Schneier on Security
Schneier on Security
The Last Watchdog
The Last Watchdog
B
Blog RSS Feed
宝玉的分享
宝玉的分享
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
S
Security @ Cisco Blogs
Cyberwarzone
Cyberwarzone
T
The Blog of Author Tim Ferriss

噜啦 - 表格

表格 练习 —— 课程表 - 噜啦
表格:结构、相关属性 - 噜啦
博主: 噜啦 · 2019-07-05 · via 噜啦 - 表格

表格:结构、相关属性

  • 发布时间:
  • 1716 次浏览
  • 386字数
  • 分类: 前端笔记本
  1. 首页
  2. 正文  

b6903b47e5f149c0217f69859fab608f.png

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
    </head>
    <body>
        <!-- 表格是什么?  excel用代码展示 -->
        <!-- 应用场景:用户表成绩表 展示数据 -->
        <!-- 
        
             表格的属性:自带了一些样式
             border:表格的边框
             width:表格的宽度
             align:center 表格的水平对齐方式
             cellspacing:0 去掉单元格之间的间隙
             
         -->
        
        
        <table border="1px" width="50%" align="center" cellspacing="0">
            
            <!-- 行 -->
            <!-- 第一行 -->
            <tr>
                <td>ID</td>
                <td>用户名</td>
                <td>性别</td>
            </tr>
            
            <!-- 第二行 -->
            <tr>
                <td>1</td>
                <td>user1</td>
                <td>男</td>
            </tr>
            
            <!-- 第三行 -->
            <tr>
            <td>2</td>
            <td>user2</td>
            <td>女</td>
            </tr>
            
            <!-- 第四行 -->
            <tr>
                <td>3</td>
                <td>user3</td>
                <td>保密</td>
            </tr>
        </table>
        
    </body>
</html>

赞赏作者

如果觉得我的文章对你有用,请随意赞赏

表格:结构、相关属性

 •