Blogger Information
Blog 9
fans 0
comment 1
visits 12317
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
深刻理解:em,rem,px 的使用场景,区别与联系
黑色郁金香
Original
1305 people have browsed it

一、px、em、rem 的概念及其之间的区别

在 css 中的单位长度使用中,比较常用的是 px、em、rem,三个单位的概念和区别是:px 是绝对值,em 与 rem 都是相对值

代码小案例:

  1. <style>
  2. :root{
  3. /* 定义了一个根元素值 */
  4. font-size: 1em;
  5. }
  6. .px{
  7. font-size: 16px;
  8. width: 200px;
  9. height: 200px;
  10. border: 1px solid red;
  11. }
  12. .em{
  13. /* 字号被修改,新的值成为父级新值 */
  14. font-size: 1.25em;
  15. width: 15em;
  16. height: 15em;
  17. border: 1px solid blue;
  18. }
  19. .rem{
  20. /* 字号取决于根元素的值 */
  21. font-size: 1rem;
  22. width: 20rem;
  23. height: 20rem;
  24. border: 1px solid springgreen;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="container">
  30. <div class="px">px绝对尺寸</div>
  31. <div class="em">em相对尺寸</div>
  32. <div class="rem">rem相对尺寸</div>
  33. </div>

实例图

标准模式

1. px:px 是固定像素单位,设置以后,在页面发生改变时,无法适应页面而去改变值的大小

2. em: em 相对于父元素,是相对父级元素字体大小的倍数

例如,父级 div 中字体设置了 12px, 在设置 2em 之后,该元素的字体大小就变成了 24px

3. rem: rem 相对于根元素(html),是相对 html 根元素字体大小的倍数

例如, html 默认的字体大小是 16px。所以,1rem 就相当于 16px。rem 的值最终取决于根元素默认值,其值是可以设置的

em 与 rem 的区分

em 相对于父元素,rem 相对于根元素(html)

总结:

  • px、em、rem 作为绝对尺寸和相对尺寸,其核心体现在所选择的参照物本身

二、vh,vw 写一个页面布局案例,欢迎大家指正

代码部分

  1. <style>
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. .header {
  7. width: 100vw;
  8. height: 10vh;
  9. background-color: cornflowerblue;
  10. line-height:10vh;
  11. text-align:center;
  12. position: relative;
  13. font-size: 2rem;
  14. justify-content: center;
  15. display: flex;
  16. }
  17. .main {
  18. float: left;
  19. width: 100vw;
  20. height: 70vh;
  21. background: rgb(36, 221, 19);
  22. line-height:70vh;
  23. text-align:center;
  24. font-size: 2rem;
  25. justify-content: center;
  26. display: flex;
  27. }
  28. .footer {
  29. float: left;
  30. width: 100vw;
  31. height: 20vh;
  32. background: rgb(221, 19, 194);
  33. line-height:20vh;
  34. text-align:center;
  35. font-size: 2rem;
  36. justify-content: center;
  37. display: flex;
  38. }
  39. </style>

效果演示

标准模式

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