表格与实例
Posted zhaotao11
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了表格与实例相关的知识,希望对你有一定的参考价值。
<table> 标签定义 html 表格
<tr> 元素定义表格行,<th> 元素定义表头,<td> 元素定义表格单元。
<table><tr><td><th>标签运用写出简单表格
<body>
<table border="1px" style="width: auto;"><!--设宽高值和边框-->
<tr> <!--行-->
<th>单元格1</th> <!--表头 列-->
<th>单元格2</th>
<th>单元格3</th>
</tr>
<tr>
<td colspan="2">单元格4</td><!--横向合并单元格-->
<td rowspan="2">单元格5</td><!--纵向合并单元格-->
</tr>
</table>
</body>
简历表实例
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title algin="center">简历</title>
</head>
<body>
<table border="1" boder="1" cellpadding="0" cellspacing="0" align="center" width="600">
<capital><b><font size="5">个人简历</font></b></capital>
<tr>
<th height="30" width="80">专业</th>
<th colspan="5"></th>
<th rowspan="5" width="130"></th>
</tr>
<tr>
<th height="30">学院</th>
<th colspan="5"></th>
</tr>
<tr>
<th height="30">姓名</th>
<th width="80"></th>
<th width="80">性别</th>
<th width="100"></th>
<th width="90">民族</th>
<th width="70"></th>
</tr>
<tr>
<th height="30">出生年月</th>
<th></th>
<th>籍贯</th>
<th></th>
<th>身高</th>
<th></th>
</tr>
<tr>
<th height="30">学历</th>
<th></th>
<th>政治面貌</th>
<th colspan="3"></th>
</tr>
<tr>
<th height="30">就业意向</th>
<th colspan="6"></th>
</tr>
<tr>
<th height="30">兴趣爱好</th>
<th colspan="6"></th>
</tr>
<tr>
<th height="30">个人说明</th>
<th colspan="6"></th>
</tr>
<tr>
<th height="30">家庭住址</th>
<th colspan="6"></th>
</tr>
<tr>
<th height="30">住宿地址</th>
<th colspan="2"></th>
<th>联系电话</th>
<th></th>
<th>手机</th>
<th></th>
</tr>
<tr>
<th height="30">任职状况</th>
<th colspan="6"></th>
</tr>
<tr>
<th rowspan="10" height="300">本人简历</th>
<th colspan="2" height="30">时间</th>
<th colspan="2">学校</th>
<th colspan="2">任职</th>
</tr>
<tr>
<th colspan="2"></th>
<th colspan="2"></th>
<th colspan="2"></th>
</tr>
<tr>
<th colspan="2"></th>
<th colspan="2"></th>
<th colspan="2"></th>
</tr>
<tr>
<th colspan="2"></th>
<th colspan="2"></th>
<th colspan="2"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
<tr>
<th colspan="6"></th>
</tr>
</table>
</body>
</html>
以上是关于表格与实例的主要内容,如果未能解决你的问题,请参考以下文章