You can use the CSS line-height property when the default space between lines of text box looks a little narrow. The next CSS code shows this.
File test.css
p {
font: 16px Arial, Geneva, Helvetica, sans-serif;
line-height: 2.0;
}
Note: You can specify the line-height using standard CSS units of measurement, such as ems or pixels, but doing …