Line-Height does not match the font-size

前端 未结 4 1009
野趣味
野趣味 2020-12-20 13:00

When I have two line of text with different font-size, they overlap. Look at this example : http://jsfiddle.net/3WcMG/1/

All the \'j\' and \'g\' are hiding the to o

4条回答
  •  春和景丽
    2020-12-20 13:26

    Increase the line height in your CSS

    line-height: 2em; (From 1 to 2em)

    Which is in the p element.

提交回复
热议问题