Add line-height to body

You don’t need to add line-height to each <p>, <h*>, et al. separately. Instead, add it to body:

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

This way textual elements can inherit from body easily.

Demo