Blogger Information
Blog 2
fans 0
comment 0
visits 1291
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0403作业 — html表格
万万
Original
565 people have browsed it

html 表格

1.1 常用元素

序号 标签 描述 备注
1 <table> 定义表格, 必选
2 <tbody> 定义表格主体, 允许定义多次 必选
3 <tr> 定义表格中的行, 必选
4 <th> 定义表格头部中的单元格,默认加粗居中 必选
5 <td> 定义 g 表格 e 主体与底部的的单元格 必选
6 <caption> 定义表格标题, 可选
7 <thead> 定义表格头部, 只需定义一次 可选
8 <tfooter> 定义表格底, 只需定义一次 可选
9 <col> 为一个/多个列设置属性 可选
10 <colgroup> 将多个<col>元素分组管理 可选

1.2 表格属性

序号 属性 适用元素 描述
1 border <table> 添加表格框
2 cellpadding <table> 设置单元格内边距
3 cellspacing <table> 设置单元格边框间隙
4 align 不限 设置单元格内容水平居中
5 bgcolor 不限 设置背景色
6 width 不限 设置宽度
7 height 不限 设置高度

1.2 表格实列

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Document</title>
  7. </head>
  8. <body>
  9. <table>
  10. <thead></thead><!--这是表格头部-->
  11. <tbody></tbody><!--这是表格主体-->
  12. <tfoot></tfoot><!--这是表格底部-->
  13. </table>
  14. <table
  15. border="1"
  16. cellpadding="5"
  17. cellspacing="0"
  18. width="500"
  19. height="300"
  20. align="center"
  21. ><!--border:边框,cellpadding:内边距,cellspacing:间隙,width:宽度,height:高度align:内容排列左中右-->
  22. <!-- 对列统一设置,colgroup中设置的属性对所有列均有效 -->
  23. <colgroup bgcolor="lightpink"><!--对列以组的方式管理 例如:背景颜色-->
  24. <!-- 如果不想自定义某一列属性,只写元素不写属性 -->
  25. <col />
  26. <!-- 第二列个性化定制: 背景为浅绿色 -->
  27. <col bgcolor="lightgreen" />
  28. <!-- 第三列背景为黄色,并跨越2列都有效 -->
  29. <col bgcolor="yellow" span="2" />
  30. <!-- 第四列,使用第3列的样式 -->
  31. <col />
  32. <!-- 最后一列无特殊样式,采用父级样式 -->
  33. <col />
  34. </colgroup>
  35. <!-- 表格标题信息 可添加样式 比如字体大小等-->
  36. <caption style="font-size: 1.5rem;margin-bottom: 10px;text-align: left;">
  37. 员工信息表
  38. </caption>
  39. <!-- 表格页眉 -->
  40. <thead bgcolor="lightblue"><!--bgcolor 设置背景颜色-->
  41. <th>部门</th>
  42. <th>ID</th>
  43. <th>姓名</th>
  44. <th>职务</th>
  45. <th>手机</th>
  46. </thead>
  47. <!-- 表格主体1 -->
  48. <tbody>
  49. <tr>
  50. <td rowspan="3" align="center">开发部</td>
  51. <td>101</td>
  52. <td>小王</td>
  53. <td>主管</td>
  54. <td>188345****</td>
  55. </tr>
  56. <tr>
  57. <!-- <td>开发部</td> -->
  58. <td>102</td>
  59. <td>小张</td>
  60. <td>程序员</td>
  61. <td>158123****</td>
  62. </tr>
  63. <tr>
  64. <!-- <td>开发部</td> -->
  65. <td>103</td>
  66. <td>小李</td>
  67. <td>实习生</td>
  68. <td>13399*****</td>
  69. </tr>
  70. </tbody>
  71. <!-- 表格主体2 -->
  72. <tbody>
  73. <tr>
  74. <td rowspan="3" align="center">销售部</td>
  75. <td>104</td>
  76. <td>小马</td>
  77. <td>主管</td>
  78. <td>135345****</td>
  79. </tr>
  80. <tr>
  81. <!-- <td>开发部</td> -->
  82. <td>105</td>
  83. <td>小刘</td>
  84. <td>客服</td>
  85. <td>157123****</td>
  86. </tr>
  87. <tr>
  88. <!-- <td>开发部</td> -->
  89. <td>106</td>
  90. <td>小朱</td>
  91. <td>实习生</td>
  92. <td>138349*****</td>
  93. </tr>
  94. </tbody>
  95. <!-- 表格页脚 -->
  96. <tfoot>
  97. <tr bgcolor="wheat">
  98. <td align="center">备注:</td>
  99. <td colspan="4">所有员工离职必须提交30天提交书面申请</td>
  100. </tr>
  101. </tfoot>
  102. </body>
  103. </html>
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post