博主信息
博文 47
粉丝 0
评论 0
访问量 31322
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
表格重点总结
P粉036614676
原创
1201人浏览过
  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. <!-- <link rel="stylesheet" href="E:\PHP Web1\HTML\CH-1\1017\1017\static\css\cart.css"> -->
  8. <title>表格</title>
  9. <style>
  10. table{
  11. width: 2000px;
  12. height: 800px;
  13. border-collapse: collapse;/* 表格间距合并*/
  14. text-align: center;
  15. }
  16. table th,
  17. table td {
  18. border: thin solid #888;
  19. padding: 5px;
  20. }
  21. table caption {
  22. font-size: 1.2em;
  23. margin-bottom: 0.5em;
  24. letter-spacing: 0.5em;
  25. }
  26. table thead,
  27. table tfoot tr [colspan] {
  28. background-color: lightcyan;
  29. }
  30. table + button {
  31. padding: 5px 20px;
  32. letter-spacing: 5px;
  33. margin: 10px 10px 10px 320px;
  34. background-color: violet;
  35. border: none;
  36. cursor: pointer;
  37. }
  38. table + button:hover {
  39. cursor: pointer;
  40. background-color: orangered;
  41. color: #fff;
  42. transition: 0.5s;
  43. }
  44. .green {
  45. background-color: lightgreen;
  46. }
  47. .wheat {
  48. background-color: wheat;
  49. }
  50. </style>
  51. </head>
  52. <body>
  53. <table border="1">
  54. <caption>购物车</caption>
  55. <thead>
  56. <tr>
  57. <th>分类</th>
  58. <th>ID</th>
  59. <th>名称</th>
  60. <th>单价</th>
  61. <th>数量</th>
  62. <th>金额</th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. <tr>
  67. <td rowspan="3">数码</td>
  68. <th>5010</th>
  69. <td>电脑</td>
  70. <td>9000</td>
  71. <td>2</td>
  72. <td>18000</td>
  73. </tr>
  74. <tr>
  75. <th>5012</th>
  76. <td>手机</td>
  77. <td>5000</td>
  78. <td>4</td>
  79. <td>20000</td>
  80. </tr>
  81. <tr>
  82. <th>5013</th>
  83. <td>相机</td>
  84. <td>15000</td>
  85. <td>2</td>
  86. <td>30000</td>
  87. </tr>
  88. <tr>
  89. <td rowspan="2">服装</td>
  90. <th>3030</th>
  91. <td>男装</td>
  92. <td>500</td>
  93. <td>2</td>
  94. <td>1000</td>
  95. </tr>
  96. <tr>
  97. <th>3031</th>
  98. <td>女装</td>
  99. <td>1000</td>
  100. <td>5</td>
  101. <td>5000</td>
  102. </tr>
  103. </tbody>
  104. <tfoot>
  105. <tr>
  106. <th colspan="4">总计:</th>
  107. <th>15</th>
  108. <th>74000</th>
  109. </tr>
  110. </tfoot>
  111. </table>
  112. <button>结算</button>
  113. </body>
  114. </html>
批改老师:PHPzPHPz

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学