CSS line-height Property

You are Here:

CSS line-height Property

CSS line-height property specifies the height of a line box.

Note: Negative values are not allowed.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p{ line-height: 3; } </style> </head> <body> <p>This is first paragraph</p> <p>This is second paragraph</p> </body> </html>

Syntax

Using CSS

element{ line-height: 3; }

Using Javascript

object.style.lineHeight = 3;

Animatable

Yes, line-height property is animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS line-height property is normal (1.2 roughly).

Property Value

The following table provides a list of values for CSS line-height property.

ValueExplanation
NumberThe used unitless number value is multiplied by the element's own font size.
normalBrowser dependent. A default value of roughly 1.2.
lengthSpecifies the line-height (px, cm, etc) as an absolute value.
%Specifies the line-height as a percentage value. Percentage values may produce unexpected results

Using Percentage

Percentage value is not recommended as it may produce unexpected results.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p{ line-height: 200%; } </style> </head> <body> <p>This is first paragraph</p> <p>This is second paragraph</p> </body> </html>

Using JavaScript

In the following example, we will demonstrate how to change the CSS line-height property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <body> <div id="point"> <p>This is first paragraph</p> <p>This is second paragraph</p> </div> <button onclick="myFunction()">Click Me</button> <script> function myFunction(){ x = document.getElementById("point"); x.style.lineHeight = 3; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author