Blogger Information
Blog 9
fans 0
comment 0
visits 6845
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格行与列合并
guyuqing
Original
972 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>商品信息表</title>
  8. </head>
  9. <body>
  10. <table border="1" align="center" width="90%" cellspacing="0" cellpadding="5">
  11. <caption>
  12. 6月商品采购表
  13. </caption>
  14. <thead bgcolor="Coral">
  15. <tr>
  16. <th>商品类别</th>
  17. <th>ID</th>
  18. <th>名称</th>
  19. <th>单价</th>
  20. <th>数量</th>
  21. <th>金额</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <tr>
  26. <td rowspan="2" bgcolor="LightBlue">电子产品</td>
  27. <td>1</td>
  28. <td>苹果手机</td>
  29. <td>6000</td>
  30. <td>10</td>
  31. <td>60000</td>
  32. </tr>
  33. <tr>
  34. <td>2</td>
  35. <td>三星电脑</td>
  36. <td>8000</td>
  37. <td>2</td>
  38. <td>16000</td>
  39. </tr>
  40. <tr>
  41. <td rowspan="2" bgcolor="LightPink">食品</td>
  42. <td>3</td>
  43. <td>牛肉</td>
  44. <td>80</td>
  45. <td>10</td>
  46. <td>800</td>
  47. </tr>
  48. <tr>
  49. <td>4</td>
  50. <td>鸡蛋</td>
  51. <td>2</td>
  52. <td>20</td>
  53. <td>40</td>
  54. </tr>
  55. <tr>
  56. <td rowspan="2" bgcolor="Silver">生活用品</td>
  57. <td>5</td>
  58. <td>卫生纸</td>
  59. <td>20</td>
  60. <td>6</td>
  61. <td>120</td>
  62. </tr>
  63. <tr>
  64. <td>6</td>
  65. <td>牙膏</td>
  66. <td>8</td>
  67. <td>5</td>
  68. <td>40</td>
  69. </tr>
  70. </tbody>
  71. <tfoot>
  72. <tr>
  73. <td colspan="4" bgcolor="PaleGoldenRod">合计</td>
  74. <td>53</td>
  75. <td>77000</td>
  76. </tr>
  77. </tfoot>
  78. </table>
  79. </body>
  80. </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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!