How can I set line space and word space in HTML ?
Printable View
How can I set line space and word space in HTML ?
CSS has letter-spacing and word-spacing not sure about lines though
HTML Code:p
{
word-spacing: 30px
}
Using line-height:
HTML Code:p
{
line-height: 10px;
}