Blogger Information
Blog 3
fans 0
comment 0
visits 1251
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格行与列的合并实例
手机用户6396678
Original
392 people have browsed it

表格:行与列的合并

1.表格实例

  1. <table border="1">
  2. <!-- 标题caption -->
  3. <caption>
  4. 个人信息表
  5. </caption>
  6. <!-- 表头thead -->
  7. <thead>
  8. <tr>
  9. <th>班级</th>
  10. <th>姓名</th>
  11. <th>学号</th>
  12. <th>身份证</th>
  13. <th>学费</th>
  14. </tr>
  15. </thead>
  16. <!-- 内容tbody -->
  17. <tbody>
  18. <tr>
  19. <th rowspan="3">网络安全1班</th>
  20. <td>许向荣</td>
  21. <td>20105330639</td>
  22. <td>330322200201300016</td>
  23. <td>4200</td>
  24. </tr>
  25. <tr>
  26. <td>牛牛哥</td>
  27. <td>20105330640</td>
  28. <td>330322200201300016</td>
  29. <td>2000</td>
  30. </tr>
  31. <tr>
  32. <td>韩金鳞</td>
  33. <td>20105330641</td>
  34. <td>330322200201300016</td>
  35. <td>3000</td>
  36. </tr>
  37. <tr>
  38. <th>信息安全1班</th>
  39. <td>金一里</td>
  40. <td>20105330642</td>
  41. <td>330322200201300016</td>
  42. <td>2000</td>
  43. </tr>
  44. <tr>
  45. <th>信息安全1班</th>
  46. <td>杨超越</td>
  47. <td>20105330642</td>
  48. <td>330322200201300016</td>
  49. <td>3000</td>
  50. </tr>
  51. </tbody>
  52. <tfoot>
  53. <th colspan="4">学费总计:</th>
  54. <th>14200</th>
  55. </tfoot>
  56. </table>

知识要点总结

  1. 合并属性:rowspan(行合并)和colspan(列合并)必须写到th或者td中

  2. th和td都是单元格,th有预制样式:加粗和居中

  3. caption标签是标题的意思

Correcting teacher:WBOYWBOY

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