Blogger Information
Blog 56
fans 0
comment 4
visits 38121
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS:表格的常用样式-复习
异乡客
Original
671 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. <style>
  11. /* 1 表格线 */
  12. td,
  13. th{
  14. border: 1px solid #000;
  15. }
  16. /* 2 表格线间隙折叠 */
  17. table{
  18. border-collapse: collapse;
  19. width: 90%;
  20. text-align: center;
  21. margin: 2em auto;
  22. }
  23. /* 3 标题 */
  24. table caption{
  25. font-weight: bolder;
  26. margin-bottom: 1em;
  27. }
  28. /* 4 表头背景 */
  29. table thead{
  30. background-color: lightgreen;
  31. }
  32. /* 5 上午和下午的单元格设置背景 */
  33. .period{
  34. background-color: lightblue;
  35. }
  36. /* 6 伪类 */
  37. table tbody:not(tbody:nth-of-type(2)) tr:first-of-type td:first-of-type {
  38. background-color: lightcoral;
  39. }
  40. </style>
  41. <table>
  42. <caption>深圳市富民小学四年级课程表</caption>
  43. <thead>
  44. <tr>
  45. <th>时间</th>
  46. <th>周一</th>
  47. <th>周二</th>
  48. <th>周三</th>
  49. <th>周四</th>
  50. <th>周五</th>
  51. </tr>
  52. </thead>
  53. <!-- 上午 -->
  54. <tbody>
  55. <tr>
  56. <td rowspan="4" class="period">上午</td>
  57. <td>数学</td>
  58. <td>数学</td>
  59. <td>数学</td>
  60. <td>数学</td>
  61. <td>数学</td>
  62. </tr>
  63. <tr>
  64. <td>数学</td>
  65. <td>数学</td>
  66. <td>数学</td>
  67. <td>数学</td>
  68. <td>数学</td>
  69. </tr>
  70. <tr>
  71. <td>数学</td>
  72. <td>数学</td>
  73. <td>数学</td>
  74. <td>数学</td>
  75. <td>数学</td>
  76. </tr>
  77. <tr>
  78. <td>数学</td>
  79. <td>数学</td>
  80. <td>数学</td>
  81. <td>数学</td>
  82. <td>数学</td>
  83. </tr>
  84. </tbody>
  85. <!-- 中午 -->
  86. <tbody>
  87. <tr>
  88. <td colspan="6">中午休息</td>
  89. </tr>
  90. </tbody>
  91. <!-- 下午 -->
  92. <tbody>
  93. <tr>
  94. <td rowspan="3" class="period">下午</td>
  95. <td>数学</td>
  96. <td>数学</td>
  97. <td>数学</td>
  98. <td>数学</td>
  99. <td>数学</td>
  100. </tr>
  101. <tr>
  102. <td>数学</td>
  103. <td>数学</td>
  104. <td>数学</td>
  105. <td>数学</td>
  106. <td>数学</td>
  107. </tr>
  108. <tr>
  109. <td>数学</td>
  110. <td>数学</td>
  111. <td>数学</td>
  112. <td>数学</td>
  113. <td>数学</td>
  114. </tr>
  115. </tbody>
  116. <tfoot>
  117. <tr>
  118. <td>备注:</td>
  119. <td colspan="5">每天下午15:30-17:30在校写作业</td>
  120. </tr>
  121. </tfoot>
  122. </table>
  123. </body>
  124. </html>
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