Skip to content
Related Articles
Get the best out of our app
GFG App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM offsetHeight Property

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The DOM offsetHeight property is used to returns the layout height of an element as an integer. It is measured in pixels. It includes height, border, padding, and horizontal scrollbars but not margin. If the element is hidden then it returns 0.

Syntax:  

element.offsetHeight 

Return Value: It returns the layout height of an element as an integer. 

Example 1:  

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        DOM Style offsetHeight Property
    </title>
    <style>
        #GFG {
            height: 150px;
            width: 300px;
            padding: 10px;
            margin: 15px;
            background-color: green;
        }
    </style>
</head>
 
<body>
    <h2>DOM offsetHeight Property</h2>
    <div id="GFG">
        <b>Information about this div:</b>
        <p id="sudo"></p>
 
    </div>
    <button type="button" onclick="Geeks()">
        Submit
    </button>
    <script>
        function Geeks() {
 
            var element = document.getElementById("GFG");
 
            var txt = "Height including padding and border: "
                + element.offsetHeight + "px";
 
            document.getElementById("sudo").innerHTML = txt;
        }
    </script>
</body>
</html>


Output: 

  • Before Clicking On Button: 

  • After Clicking On Button: 

Example-2: 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
        DOM Style offsetHeight Property
    </title>
    <style>
        #GFG {
            height: 150px;
            width: 300px;
            padding: 10px;
            margin: 15px;
            background-color: green;
        }
    </style>
</head>
 
<body>
    <h2>DOM offsetHeight Property</h2>
    <div id="GFG">
        <b>Information about this div:</b>
        <br>
        <p id="sudo"></p>
 
    </div>
    <button type="button" onclick="Geeks()">
        Submit
    </button>
    <script>
        function Geeks() {
            var element = document.getElementById("GFG");
            var txt = "";
            txt += "Height with padding: "
                + element.clientHeight + "px<br>";
 
            txt += "Height with padding and border: "
                + element.offsetHeight + "px";
 
            document.getElementById("sudo").innerHTML = txt;
        }
    </script>
</body>
</html>


Output : 

  • Before Clicking On Button: 

  • After Clicking On Button: 

Supported Browsers: The browser supported by DOM offsetHeight property are listed below: 

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 5.5 and above
  • Firefox 1 and above
  • Opera 8 and above
  • Safari 3 and above

My Personal Notes arrow_drop_up
Last Updated : 10 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials