Blogger Information
Blog 16
fans 0
comment 0
visits 6864
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
创建用户表,简单实现行与列的合并操作
Stonegarlic
Original
386 people have browsed it

开学第三课作业

预览效果

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>表格作业</title>
  8. </head>
  9. <style>
  10. body{ text-align:center;}
  11. table{margin: 0 auto;
  12. height: 200px;}
  13. </style>
  14. <body>
  15. <h2>员工资料卡</h2>
  16. <hr>
  17. <table border="2">
  18. <thead>
  19. <tr>
  20. <th>姓名</th>
  21. <td>张三</td>
  22. <th colspan="2">出生日期</th>
  23. <td>1978-12-31</td>
  24. <th>员工编号</th>
  25. <td>A1234</td>
  26. </tr>
  27. <tr>
  28. <th>性别</th>
  29. <td></td>
  30. <th>民族</th>
  31. <td></td>
  32. <th>籍贯</th>
  33. <td colspan="2">广东省 珠海市</td>
  34. </tr>
  35. <tr>
  36. <th>部门</th>
  37. <td colspan="3">综合部</td>
  38. <th>政治面貌</th>
  39. <td colspan="2">党员</td>
  40. </tr>
  41. <tr>
  42. <th>通讯地址</th>
  43. <td colspan="6">********************</td>
  44. </tr>
  45. <tr>
  46. <th>身份证号</th>
  47. <td colspan="6">**************</td>
  48. </tr>
  49. <tr>
  50. <th>姓名</th>
  51. <td>李四</td>
  52. <th colspan="2">出生日期</th>
  53. <td>1999-2-3</td>
  54. <th>员工编号</th>
  55. <td>B1234</td>
  56. </tr>
  57. <tr>
  58. <th>性别</th>
  59. <td></td>
  60. <th>民族</th>
  61. <td></td>
  62. <th>籍贯</th>
  63. <td colspan="2">四川省 成都市</td>
  64. </tr>
  65. <tr>
  66. <th>部门</th>
  67. <td colspan="3">开发部</td>
  68. <th>政治面貌</th>
  69. <td colspan="2">团员</td>
  70. </tr>
  71. <tr>
  72. <th>通讯地址</th>
  73. <td colspan="6">**********</td>
  74. </tr>
  75. <tr>
  76. <th>身份证号</th>
  77. <td colspan="6">**************</td>
  78. </tr>
  79. </thead>
  80. <tbody></tbody>
  81. <tfoot></tfoot>
  82. </table>
  83. </body>
  84. </html>
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
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