Blogger Information
Blog 12
fans 0
comment 2
visits 6277
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
em,rem特点改版课程表
白鸽
Original
761 people have browsed it

em,rem

案例简述em,rem

em,rem本质是字体高度的单位。
一个em,rem是16px的像素。
但是em是具有父类继承的特性,而rem是继承自根类的。
如果采用rem作为宽度单位,可以初始一个数值,例如
1rem=100px;

  1. html{
  2. font-size: 100px;
  3. }

这样,我们的一个字的高度就是100px.但是正文中我们不能使用这么大的字啊。我们可以在body中二次设置一个字高。

  1. body{
  2. font-size:0.16rem;
  3. }

这样我们的字高就回到了16px。但是我们可以使用根设置的1rem=100px来设置div等标签的宽度高度了。

  1. div{
  2. width: 14rem;
  3. height: 10rem;
  4. }

这时,div的宽度是1400px,高度是1000px.

改版课程表

改版课程表

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  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. html{
  10. font-size: 1rem;
  11. }
  12. table td,
  13. table th {
  14. border: 0.0625rem solid #000;
  15. height: 2.5rem;
  16. }
  17. table {
  18. border-collapse: collapse;
  19. }
  20. table {
  21. width: 50rem;
  22. margin: auto;
  23. text-align: center;
  24. }
  25. table caption {
  26. font-size: 2rem;
  27. margin-bottom: 1rem;
  28. }
  29. table thead {
  30. background-color:lightsalmon;
  31. }
  32. /* 这里难道是选择了表格主体中的第一列第一行中的单元格和倒数第二个单元格 ?? :)*/
  33. table tbody:not(tbody:nth-of-type(2)) tr:first-of-type td:first-of-type {
  34. background-color:violet;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <table>
  40. <caption>
  41. 改版课程表
  42. </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. <tbody>
  56. <tr>
  57. <td rowspan="4" class="period">上午</td>
  58. <td>数学</td>
  59. <td>数学</td>
  60. <td>数学</td>
  61. <td>数学</td>
  62. <td>数学</td>
  63. </tr>
  64. <tr>
  65. <td>数学</td>
  66. <td>数学</td>
  67. <td>数学</td>
  68. <td>数学</td>
  69. <td>数学</td>
  70. </tr>
  71. <tr>
  72. <td>语文</td>
  73. <td>语文</td>
  74. <td>语文</td>
  75. <td>语文</td>
  76. <td>语文</td>
  77. </tr>
  78. <tr>
  79. <td>英语</td>
  80. <td>英语</td>
  81. <td>英语</td>
  82. <td>英语</td>
  83. <td>英语</td>
  84. </tr>
  85. </tbody>
  86. <!-- 中午 -->
  87. <!-- 第二个tbody -->
  88. <tbody>
  89. <tr>
  90. <td colspan="6" style="height:5.0rem">中午休息</td>
  91. </tr>
  92. </tbody>
  93. <!-- 下午 -->
  94. <!-- 第3个tbody -->
  95. <tbody>
  96. <tr>
  97. <td rowspan="3" class="period">下午</td>
  98. <td>音乐</td>
  99. <td>音乐</td>
  100. <td>体育</td>
  101. <td>体育</td>
  102. <td>体育</td>
  103. </tr>
  104. <tr>
  105. <td>美术</td>
  106. <td>美术</td>
  107. <td>美术</td>
  108. <td>美术</td>
  109. <td>美术</td>
  110. </tr>
  111. <tr>
  112. <td>科学</td>
  113. <td>科学</td>
  114. <td>科学</td>
  115. <td>科学</td>
  116. <td>科学</td>
  117. </tr>
  118. </tbody>
  119. <!-- 表尾 -->
  120. <tfoot>
  121. <tr>
  122. <td>备注:</td>
  123. <td colspan="5">每天下午15:30-17:30在校写作业</td>
  124. </tr>
  125. </tfoot>
  126. </table>
  127. </body>
  128. </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