Copyright © tutorialspoint.com

CSS - line-height

previous next


Description:

The line-height property modifies the height of the inline boxes which make up a line of text.

Possible Values:

Applies to:

All the HTML elements.

DOM Syntax:

object.style.lineHeight="15px;"

Example:

Following is the example:

<p style="line-height:180%">
This text is having bigger line height. Line 1
This text is having bigger line height. Line 2
</p>

This will produce following result:

This text is having bigger line height. Line 1 This text is having bigger line height. Line 2

To Become more comfortable - Do Online Practice


previous next

Copyright © tutorialspoint.com