Blogger Information
Blog 4
fans 0
comment 0
visits 2043
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
手机商品信息表
wan-PHP
Original
578 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" width="80%" cellspacing="0" cellpadding="5">
  11. <caption>
  12. 商品信息表
  13. </caption>
  14. <thead>
  15. <th>国家</th>
  16. <th>ID</th>
  17. <th>品名</th>
  18. <th>价格(元)</th>
  19. <th>数量(个)</th>
  20. <th>金额(元)</th>
  21. </thead>
  22. <tbody>
  23. <tr style="background: red" align="center">
  24. <td rowspan="4" style="background-color: turquoise">中国</td>
  25. <td>11</td>
  26. <td>华为</td>
  27. <td>6999</td>
  28. <td>1</td>
  29. <td>6999</td>
  30. </tr>
  31. <tr align="center" style="background-color: red">
  32. <td>12</td>
  33. <td>OPPO</td>
  34. <td>5999</td>
  35. <td>2</td>
  36. <td>11998</td>
  37. </tr>
  38. <tr style="background-color: red" align="center">
  39. <td>13</td>
  40. <td>VIVO</td>
  41. <td>4999</td>
  42. <td>3</td>
  43. <td>14997</td>
  44. </tr>
  45. <tr align="center" style="background-color: red">
  46. <td>14</td>
  47. <td>小米</td>
  48. <td>4999</td>
  49. <td>2</td>
  50. <td>9998</td>
  51. </tr>
  52. <tr align="center" style="background-color: mediumturquoise">
  53. <td style="background-color: yellowgreen">美国</td>
  54. <td>15</td>
  55. <td>Apple</td>
  56. <td>6999</td>
  57. <td>1</td>
  58. <td>6999</td>
  59. </tr>
  60. </tbody>
  61. <tfoot>
  62. <tr align="center">
  63. <td colspan="4">合计</td>
  64. <td>9</td>
  65. <td>50991</td>
  66. </tr>
  67. </tfoot>
  68. </table>
  69. </body>
  70. </html>

Correcting teacher:天蓬老师天蓬老师

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!