CSS allows you to control the widthand height of an element, as well as increase the space between two lines, with the use of dimension properties. |
The following CSS code example shows how to increase the space between lines. |
<html> <head> <style type=”text/css”> p { line-height: 1cm; } p.bigSpace { line-height: 1.5cm; } </style> </head> <body> |