Set The Line-height Of Paragraphs
CSS offers the line-height
property to change the height of each line in a block of text. As the name suggests, it changes the amount of vertical space that each line of text gets.
p {
font-size: 16px;
line-height: 25px;
}
source