Blogger Information
Blog 12
fans 0
comment 0
visits 6610
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0629商品信息表
Giesen?
Original
449 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  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>Document</title>
  8. </head>
  9. <body>
  10. <style>
  11. td {
  12. text-align: center;
  13. }
  14. </style>
  15. <!-- 表格td文本居中 -->
  16. <!-- 表头 -->
  17. <table border="1" width="80%" cellspacing="0" cellpadding="3">
  18. <!-- cellspacing表格横线内宽度 表格空白的行高 border 表格横线外宽度-->
  19. <!-- 标题 -->
  20. <caption>商品信息表</caption>
  21. <thead bgcolor="yellow">
  22. <tr>
  23. <th>购买人</th>
  24. <th>品名</th>
  25. <th>单价</th>
  26. <th>数量</th>
  27. <th>金额</th>
  28. </tr>
  29. </thead>
  30. <!-- 表体 -->
  31. <tbody>
  32. <tr>
  33. <td rowspan="2" bgcolor="lightblue">张三</td>
  34. <td>苹果手机6s</td>
  35. <td>5000</td>
  36. <td>1</td>
  37. <td>5000</td>
  38. </tr>
  39. <!-- 列的合并需要两行都在同一个tbody中才可以生效 -->
  40. <tr>
  41. <!-- <td>1</td> -->
  42. <td>苹果手机6</td>
  43. <td>5000</td>
  44. <td>1</td>
  45. <td>5000</td>
  46. </tr>
  47. </tbody>
  48. <tbody>
  49. <tr>
  50. <td bgcolor="lightblue">李四</td>
  51. <td>蓝牙耳机</td>
  52. <td>1300</td>
  53. <td>2</td>
  54. <td>2600</td>
  55. </tr>
  56. </tbody>
  57. <tbody>
  58. <tr>
  59. <td bgcolor="lightblue">老吴</td>
  60. <td>充电线</td>
  61. <td>20</td>
  62. <td>5</td>
  63. <td>100</td>
  64. </tr>
  65. <!-- 表尾 -->
  66. <tfoot>
  67. <tr>
  68. <td colspan="4" bgcolor="red">总金额</td>
  69. <td>7700</td>
  70. </tr>
  71. </tfoot>
  72. </table>
  73. </body>
  74. </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