Blogger Information
Blog 35
fans 0
comment 0
visits 16650
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
em,rem的总结+课程表
手机用户311660634
Original
653 people have browsed it

em的特点:

1.em的值不是固定的, 只要文本内不修改字体尺寸,浏览器默认是16PX
2.em会继承父级元素的值
3.em比PX更加灵活

rem的特点:

rem是一个相对单位,这单位可谓集相对大小和绝对大小的优点于一身,它是一个根元素,不像em一样使用级联的方式来计算尺寸,默认是16px,除非人为修改,否则不变

使用场景

1.em在移动端,web端均可使用,其参考对象为父元素,设置时都需要知道父元素文本的font-size及当前对象内文本的font-size

2.rem适合在移动端使用,其参考对象为根元素

推荐使用rem

1.rem是根元素 不会继承父级元素大小

  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>Document</title>
  8. <style>
  9. html{
  10. font-size: 100px;
  11. }
  12. table th,
  13. table td{
  14. border: 0.1em solid #000;
  15. }
  16. table{
  17. width: 50%;
  18. border-collapse: collapse;
  19. margin: auto;
  20. text-align: center;
  21. font-size: 0.16em;
  22. }
  23. table caption{
  24. font-size: 0.12em;
  25. margin-bottom: 0.02em;
  26. }
  27. table thead{
  28. background-color: red;
  29. }
  30. .time{
  31. background-color: cyan;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <table>
  37. <caption>合肥市同安小学五年级课程表</caption>
  38. <thead>
  39. <tr>
  40. <th>时间</th>
  41. <th>周一</th>
  42. <th>周二</th>
  43. <th>周三</th>
  44. <th>周四</th>
  45. <th>周五</th>
  46. </tr>
  47. </thead>
  48. <tbody>
  49. <tr>
  50. <td rowspan="4" class="time">上午</td>
  51. <td>数学</td>
  52. <td>数学</td>
  53. <td>数学</td>
  54. <td>数学</td>
  55. <td>数学</td>
  56. </tr>
  57. <tr>
  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. </tbody>
  79. <tbody>
  80. <tr>
  81. <td colspan="6">中午休息</td>
  82. </tr>
  83. </tbody>
  84. <tbody>
  85. <tr>
  86. <td rowspan="3" class="time">下午</td>
  87. <td>音乐</td>
  88. <td>音乐</td>
  89. <td>体育</td>
  90. <td>体育</td>
  91. <td>体育</td>
  92. </tr>
  93. <tr>
  94. <td>美术</td>
  95. <td>美术</td>
  96. <td>美术</td>
  97. <td>美术</td>
  98. <td>美术</td>
  99. </tr>
  100. <tr>
  101. <td>科学</td>
  102. <td>科学</td>
  103. <td>科学</td>
  104. <td>科学</td>
  105. <td>科学</td>
  106. </tr>
  107. </tbody>
  108. <tfoot>
  109. <tr>
  110. <td>备注</td>
  111. <td class="time" colspan="5">每天下午15.30~17.30在校写作业</td>
  112. </tr>
  113. </tfoot>
  114. </table>
  115. </body>
  116. </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