Set the distance between lines with the line-height property.
With CSS, the height of a text line can be changed using the line-height property.
Start off by placing the following code in the head section of you page.(between <head> and </head>)
Code:
------------------------------------------------------------------------
<style type="text/css">
p
{
line-height: 16pt
}
</style>
------------------------------------------------------------------------
To use the style, place the following wherever you would like to use it.
Code:
------------------------------------------------------------------------
<p>
text goes here
</p>
------------------------------------------------------------------------
In action:
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla rhoncus. Fusce in sapien in pede blandit euismod. Integer tincidunt tortor quis turpis. Vestibulum scelerisque felis non justo. Sed leo magna, lacinia in, mollis vel, egestas non, dui. Nullam tempus sem quis mi. Cras ac tellus et ligula porta commodo.
Notice that the height between lines are larger above. The line height can also be smaller than the size of the font, however, this makes the text hard to read because the text will overlap each other.