Blogger Information
Blog 20
fans 0
comment 0
visits 8652
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
10.18作业,表单的属性及应用
A 管志岗-电商策划
Original
331 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. <style>
  9. table {
  10. /* background-color: #f40; */
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <table
  16. border="1"
  17. style="
  18. line-height: 30px;
  19. width: 500px;
  20. text-align: center;
  21. border-radius: 10px;
  22. border-collapse: collapse;
  23. "
  24. >
  25. <caption>
  26. 商品属性
  27. </caption>
  28. <thead style="background-color: #f40">
  29. <tr>
  30. <th>1</th>
  31. <th>名称</th>
  32. <th>价格</th>
  33. <th>颜色</th>
  34. <th>尺寸</th>
  35. <th>配置</th>
  36. </tr>
  37. </thead>
  38. <!-- 表体必选,浏览器自动生成tbody,一个表格中可以有多个tbody -->
  39. <tbody>
  40. <!-- 先写tr,创建一个新行(单元格的容器)
  41. td单元格储存数据的地方,th有预置样式:加粗居中
  42. 跨行合并:rowspan, row行, span合并
  43. -->
  44. <tr>
  45. <td>1</td>
  46. <td>联想</td>
  47. <td>4500</td>
  48. <td>红色</td>
  49. <td>14</td>
  50. <td>i5</td>
  51. </tr>
  52. <tr>
  53. <td>2</td>
  54. <td>鸿基</td>
  55. <td>4800</td>
  56. <td rowspan="3">黑色</td>
  57. <td>13</td>
  58. <td>i5</td>
  59. </tr>
  60. <tr>
  61. <td>3</td>
  62. <td>戴尔</td>
  63. <td>4900</td>
  64. <!-- <td>黄色</td> -->
  65. <td>15</td>
  66. <td>i7</td>
  67. </tr>
  68. <tr>
  69. <td>4</td>
  70. <td>华硕</td>
  71. <td>6000</td>
  72. <!-- <td>黑色</td> -->
  73. <td>14.8</td>
  74. <td>i7</td>
  75. </tr>
  76. <tr>
  77. <td>5</td>
  78. <td>苹果</td>
  79. <td>8999</td>
  80. <td>白色</td>
  81. <td>14</td>
  82. <td>i7</td>
  83. </tr>
  84. </tbody>
  85. <tfoot>
  86. <tr>
  87. <th>6</th>
  88. <th></th>
  89. <th>29199</th>
  90. <th colspan="3"></th>
  91. <!-- <th>29199</th> -->
  92. <!-- <th>29199</th> -->
  93. </tr>
  94. </tfoot>
  95. </table>
  96. <button>总结</button>
  97. </body>
  98. </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