<!DOCTYPE html>
<html>
<head>
<meta name="generator"
content="HTML Tidy for HTML5 (experimental) for Windows https://github.com/w3c/tidy-html5/tree/c63cc39" />
<meta charset="utf-8" />
<title>常用标签</title>
</head>
<body>
<!--表格由table标签创建,tr表示行,td表示列 -->
<table border="10px" cellspacing="10" cellpadding="20">
<!--cellpadding表示的是内部距离,cellspacng是格子间距-->
<tr>
<th>姓名</th>
<th>年龄</th>
<th>科目</th>
<th>成绩</th>
</tr>
<tr>
<td>Tom</td>
<td>20</td>
<td>语文</td>
<td>90</td>
</tr>
<tr>
<td>Linda</td>
<td>22</td>
<td>数学</td>
<td>85</td>
</tr>
<tr>
<td rowspan="2">Lucy</td>
<td>23</td>
<td>英语</td>
<td>78</td>
</tr>
<tr>
<td>23</td>
<td>数学</td>
<td>68</td>
</tr>
<tr>
<td colspan="3">成绩平均值</td>
<td>84.3</td>
</tr>
<!--colspan表示可跨的列数,rowspan表示可跨的行数-->
</table>
</body>
</html>

最新文章

  1. iOS开发系列--C语言之指针
  2. Linux下安装Apache并以mod_wsgi方式部署django站点
  3. 学习从零开始写jQuery框架
  4. [转帖]Asp.NET 弹出页面
  5. squid服务搭建
  6. oracle db_unnqiue_name db_name sid_name instance_name service_name
  7. Linux 单用户模式的使用
  8. chrome使用Timeline做性能分析
  9. 中文代码示例之5分钟入门TypeScript
  10. 【洛谷P1706全排列问题】
  11. 大量Python开源第三方库资源分类整理,含菜鸟教程章节级别链接
  12. Redis和memcached缓存技术
  13. with文件操作
  14. 转 利用 Console 来学习、调试JavaScript
  15. hdu3488 Tour 拆点+二分图最佳匹配
  16. 读研 or 工作?对计算机类专业学习的看法
  17. 解决java.sql.SQLException: Incorrect string value: &#39;\xE6\x88\x91\xE7\x9A\x84...&#39; for column &#39;groupName&#39;
  18. Java基础-6流程控制
  19. 15个变态的Google面试题以及答案
  20. 第7课 Thinkphp 5 模板输出变量使用函数 Thinkphp5商城第四季

热门文章

  1. [转]uses-permission权限列表
  2. Linux下PS1、PS2、PS3、PS4使用详解
  3. Gson简要使用
  4. 【转】idea 用maven骨架生成项目速度慢的问题
  5. iOS 用CALayer实现动画
  6. 【mysql】执行mysql脚本
  7. hungary
  8. dbca no protocol support
  9. Linux查看硬件配置信息
  10. 蓝牙4.0——Android BLE开发官方文档翻译