Blogger Information
Blog 4
fans 0
comment 0
visits 1362
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
前端学习之HTML制作表格的相关特征
༒唯一࿈༒
Original
306 people have browsed it

表格的基本结构

<table></table>用来制作表格。

table元素是一种标签组合,还包含trthtd等;

-<tr></tr>:定义表格中的行
-<th></th>:定义表格内的表头单元格(文字居中并加粗)
-<td></td>:定义表格内的数据单元格(文字左对齐,常规字体)

横向合并 cospan

举例说明:
  1. <tr>
  2. <!-- <td>物理</td> -->
  3. <td colspan='2'>数学</td>
  4. </tr>
  5. <tr>
  6. <td>历史</td>
  7. <td>化学</td>
  8. </tr>
效果:

课程表-横向合并

纵向合并 rowspan

举例说明:

  1. <tr>
  2. <td rowspan="3">语文</td>
  3. <td>思政</td>
  4. <td>化学</td>
  5. </tr>
  6. <tr>
  7. <td>物理</td>
  8. <td>数学</td>
  9. </tr>
  10. <tr>
  11. <td>体育</td>
  12. <td>化学</td>
  13. </tr>
效果:

纵向合并

语义化表格结构

table中添加语义化标签,以便于浏览器解析和脚本引用:

<caption></caption>:表示表格的标题,默认会在表格上方,文字居中
<thead></thead>:表示表格的表头
<tbody></tbody>:表示表格主体
<tfoot></tfoot>:表示表格的结尾

综合练习:

  1. <table border="2" width="500px">
  2. <caption>
  3. 613班级课程表
  4. </caption>
  5. <thead>
  6. <tr>
  7. <th>星期一</th>
  8. <th>星期二</th>
  9. <th>星期三</th>
  10. <th>星期四</th>
  11. <th>星期五</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr>
  16. <td colspan='2'>数学</td>
  17. <td>化学</td>
  18. <td rowspan="3">语文</td>
  19. <td>思政</td>
  20. </tr>
  21. <tr>
  22. <td>历史</td>
  23. <td colspan="2">语文</td>
  24. <td>数学</td>
  25. </tr>
  26. <tr>
  27. <td>物理</td>
  28. <td>美术</td>
  29. <td>体育</td>
  30. <td>化学</td>
  31. </tr>
  32. </tbody>
  33. <tfoot>
  34. <tr>
  35. <td colspan="4">英语</td>
  36. <td>体育</td>
  37. </tr>
  38. </tfoot>
  39. </table>
效果:

综合练习

总结:本次练习只是单纯实现了合并操作,以及语义化结构标签的具体使用效果。没有做进一步的界面展示优化部分,当实际使用时需注意此项!

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!