body 元素添加行高

不必为每一个 <p><h*> 元素逐一添加 line-height,直接添加到 body 元素:

  1. body {
  2. line-height: 1.5;
  3. }

文本元素可以很容易地继承 body 的样式。

演示