css中常见的单位

2018-03-16  本文已影响0人  漫卷0823

px

百分比%

em

<div style="font-size:20px;">
    <div style="width: 5em;background-color: blueviolet">box1</div>
    <div style="font-size: 15px;width: 5em;background-color: blue">box2</div>
</div>
屏幕快照 2018-11-07 下午10.45.00.png
  1. 用户可以设置字体大小
  1. 修改方便快捷

rem

.outer{
    font-size: 2em;
}
.inner,.text{
    font-size: 0.75em;
}
<div class="outer">
     <div class="articl-title">测试一下,你就知道的点点滴滴多多多多多</div>
     <div id="inner" class="inner">
          <a href="">css中的常见单位</a>
          <p class="text">em和rem有哪些不同</p>
      </div>
</div>
<div style="font-size: 1.5rem; width: 5rem;background-color: #797979;">1.5rem;</div>
html{
        font-size: 20px;
 }
html{
        font-size:62.5%;
}

vw和vh

名称 解释
vw 1vw = 视口宽度的1%
vh 1vw = 视口高度的1%
vmin 选取vw和vh中最小的那个
vmax 选取vw和vh中最大的那个

先写这些有时间再更

上一篇下一篇

猜你喜欢

热点阅读