Blogger Information
Blog 27
fans 1
comment 2
visits 90238
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
用户表用于行与列的合并操作
          
Original
433 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>用户表</title>
  6. <style>
  7. table,th,td{border:1px solid saddlebrown}
  8. table {border-collapse: collapse; text-align: center}
  9. table tbody tr td,thead tr th{padding: 10px}
  10. </style>
  11. </head>
  12. <body>
  13. <!-- 跨行合并 : rowspan, row行 span 合并 -->
  14. <!-- 合并属性 rowspan/colspan,必须写到td, th中 -->
  15. <table >
  16. <caption>
  17. <h3>用户表</h3>
  18. </caption>
  19. <thead>
  20. <tr>
  21. <!-- th 加粗显示-->
  22. <th>姓名</th>
  23. <th>年龄</th>
  24. <th>手机号</th>
  25. <th>身高</th>
  26. <th>存款</th>
  27. </tr>
  28. </thead>
  29. <tbody>
  30. <tr>
  31. <td>武松</td>
  32. <td>28</td>
  33. <td>189***</td>
  34. <td>194cm</td>
  35. <td>50</td>
  36. </tr>
  37. <!-- tr>td{张三}+td{35}+td{189***}+td{156cm}-->
  38. <tr>
  39. <td>张三</td>
  40. <td>35</td>
  41. <td>189***</td>
  42. <td>156cm</td>
  43. <td>150</td>
  44. </tr>
  45. <tr>
  46. <td>李四</td>
  47. <td>55</td>
  48. <td>172***</td>
  49. <td>169cm</td>
  50. <td>30</td>
  51. </tr>
  52. <tr>
  53. <th colspan="4">财务合计:</th>
  54. <th>230</th>
  55. </tr>
  56. </tbody>
  57. </table>
  58. </body>
  59. </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
1 comments
           2022-10-18 16:01:17
效果图PHP中文网给屏蔽了 .....
1 floor
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!