Open In App

HTML | DOM Style lineHeight Property

The Style lineHeight property is used for setting or returning the distance between lines in a text. It is a string which represents the distance between lines in the text.

object.style.lineHeight
object.style.lineHeight = "normal|number|length|%|initial|
inherit"

Return Values: It returns a string value that represents the distance between lines in the text



Property Values :

Below program illustrates the Style lineHeight property : 



Example: Setting the line height for a <div> element. 




<!DOCTYPE html>
<html>
 
<head>
    <title> Style lineHeight property in HTML</title>
    <style>
        #samplediv {
            border: 1px solid green;
        }
         
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
 
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2> Style lineHeight property </h2>
    <br>
 
    <div id="MyDiv">
        GeeksforGeeks offers the following courses :
        <ul>
            <li> Fork Python </li>
            <li> Fork CPP </li>
            <li> Fork Java </li>
            <li> Sudo Placement </li>
        </ul>
    </div>
    <br>
    <p>Double click the button</p>
    <button type="button" ondblclick="lineheight()">
    Adjust Line Height
    </button>
 
    <script>
        function lineheight() {
         
            // Set lineHeight.
            document.getElementById(
            "MyDiv").style.lineHeight =
            "2";
        }
    </script>
 
</body>
 
</html>                   

Output:

 

 

Supported Browsers:


Article Tags :