I wanna make spaces between my lines in a paragraph, but I want them smaller than a line break space.
Adjust the line-height in your paragraph text with CSS. I find that setting the font size and line-height in the body takes care of that very quickly. A line-height of 1.5 in the body rule (I tend to use short-hand whenever possible) normally does the trick.
Right, the line-height property sets the distance between lines. Example: p { line-height: 1.4 } p { line-height: 14pt } p { line-height: 140% } Code (markup):
It is best to set the line-height to be relative to the font size that's been declared, rather than the same value as the font size. That way if ever switch unit values on the font size, you can rest assured that the leading (line-height) will adjust accordingly.