<!DOCTYPE html>
<html>
<head>
<title>CSS line-height property</title>
<style>
p {
font-family: sans-serif;
font-size: 20px;
border: 1px solid #000;
}
p.one {
line-height: normal;
}
p.two {
line-height: 2;
}
p.three {
line-height: 28px;
}
p.four {
line-height: 170%;
}
</style>
</head>
<body>
<p class="one">Paragraph 1: This is paragraph text this text is paragraph text</p>
<p class="two">Paragraph 2: This is paragraph text this text is paragraph text</p>
<p class="three">Paragraph 3: This is paragraph text this text is paragraph text</p>
<p class="four">Paragraph 4: This is paragraph text this text is paragraph text</p>
</body>
</html>