Blogger Information
Blog 19
fans 0
comment 6
visits 19033
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS中em,rem,vw,vh应用及原理
葵花宝典
Original
927 people have browsed it

CSS 中 em,rem 应用及原理

em

  1. em 是一种计量单位比例, 可以用在值类型的 CSS 属性中,比如:width,height,margin,padding 等这些属性中,它是以比例来计算出最终大小的, 它的计算基数是 html 标签下的 font-size 值.由于 HTML 标签是最大的包含块,所有标签都能继承到它的 font-size,可以把 html 标签下的 font-size 看作是一个常量,所有 em 都是以它来计算.
  2. 浏览器默认为 16px,所以 HTML 中的 font-sizew 值为 16px,1em 也就是 16px
  3. font-size 在子父元素间有继承性,所以改变了父元素的 font-size 后,子元素的 em 基数也会跟着变.

rem

rem 与 em 相比,rem 不继承父元素 font-size 大小,它不会比例大小变化,它是一个固定值,值来自 html 标签下的 font-size 大小.

em rem vw vh 配合使用示例

em 和 rem 应用灵活,配合 vw 和 vh,做响应式布局使用,而不能用 px, 有了 em 和 rem,就要放弃使用 px.

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>em和rem应用到盒子布局中</title>
  7. <style>
  8. html {
  9. /* 最大包含块 */
  10. /* 改变html下font-size大小,就改变全局字体大小 */
  11. font-size: 1em;
  12. }
  13. #on {
  14. /* 此处改变了div子元素的大小 */
  15. font-size: 1.5em;
  16. /* 此处用vh和vw 以百分比调节外边距 */
  17. margin: 5vh 10vw;
  18. background-color: rgb(147, 188, 207);
  19. border-radius: 1.2em;
  20. }
  21. #on p {
  22. /* 父给大小改变,但不影响rem的取值16px */
  23. font-size: 1.1rem;
  24. text-indent: 2.2rem;
  25. line-height: 2;
  26. padding: 0 1em 1em;
  27. margin: 0;
  28. color: rgb(47, 51, 56);
  29. }
  30. #on h2 {
  31. font-size: 1.5rem;
  32. color: aliceblue;
  33. padding: 1em;
  34. margin: 0;
  35. }
  36. .off {
  37. background-color: rgb(137, 97, 189);
  38. /* 高和宽取值都是当前窗口宽度的30%来计算 */
  39. height: 30vw;
  40. width: 30vw;
  41. /* auto左右相等,意为距中 */
  42. margin: 1em auto;
  43. }
  44. .off span {
  45. padding: 1em;
  46. display: block;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div id="on">
  52. <h2>美国射电望远镜塌了,外媒关注中国天眼向世界开放</h2>
  53. <p>
  54. 11月4日,国家天文台在北京召开新闻发布会,介绍中国天眼FAST的运行情况及最新科学成果。
  55. 国家天文台表示,FAST自今年1月验收以来,设施运行稳定可靠,近一年已经观测服务超过5200个机时,
  56. 超过预期设计目标近2倍,发现脉冲星数量超过240颗,基于FAST数据发表的高水平论文达到40余篇。
  57. 近日,FAST在快速射电暴方面的研究成果陆续发表在国际科学期刊《自然》杂志上。
  58. 会上,中科院院士、FAST科学委员会主任武向平还透露了一个关键信息,FAST自2021年起面向全世界开放,
  59. “中国天眼”将成为“世界巨眼”,体现构建人类命运共同体的理念。
  60. </p>
  61. </div>
  62. <div class="off">
  63. <span>此处出显一个正方型的盒子,它会随着可视窗口大小变化跟着变化</span>
  64. </div>
  65. </body>
  66. </html>

实例图示:

小窗口时
大窗口时

Correcting teacher:天蓬老师天蓬老师

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