SOURCE

console 命令行工具 X clear

                    
>
console
<div class="box">
  
  <p>line-height:1.5</p>
  <span class="big">
    我的font-size为60px
  </span>
</div>
<br />
<div class="box2">
  
  <p>line-height:150%</p>
  <span class="big">
    我的font-size为60px
  </span>
</div>
* {
  padding:0;
  margin:0;
}

.box {
  background:lightgray;
  font-size:20px;
  line-height:1.5;
}

.box2 {
  background:lightgray;
  font-size:20px;
  line-height:150%;
}

.big {
  font-size:60px;
}