Blogger Information
Blog 9
fans 0
comment 0
visits 9089
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML表格案例《商品信息表》
不忘初心
Original
623 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. <style>
  9. table{
  10. text-align: center;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <table border="1px" cellspacing="0" align="center">
  16. <caption>商品信息表</caption>
  17. <thead>
  18. <tr>
  19. <th>ID</th>
  20. <th>商品名称</th>
  21. <th>价格</th>
  22. <th>数量</th>
  23. <th>金额</th>
  24. </tr>
  25. </thead>
  26. <tbody>
  27. <tr>
  28. <td>01</td>
  29. <td>华为mate40</td>
  30. <td>5499</td>
  31. <td>1</td>
  32. <td>5499</td>
  33. </tr>
  34. <tr>
  35. <td>02</td>
  36. <td>华为mate40 PRO</td>
  37. <td>6999</td>
  38. <td>1</td>
  39. <td>6999</td>
  40. </tr>
  41. <tr>
  42. <td>03</td>
  43. <td>华为NOVA 8 PRO</td>
  44. <td>3888</td>
  45. <td>2</td>
  46. <td>3888</td>
  47. </tr>
  48. <tr>
  49. <td colspan="2">合计:</td>
  50. <td>16386</td>
  51. <td>4</td>
  52. <td>20274</td>
  53. </tr>
  54. </tbody>
  55. </table>
  56. </body>
  57. </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