Open In App

HTML DOM Screen height Property

Last Updated : 14 Jun, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

The Screen height property is used for returning the total height of a user’s screen. It returns the total height of the screen in pixels.

Syntax:  

screen.height

Return Value: A Number, representing the total height of the user’s screen, in pixels

Below program illustrates the Screen height Property :

Checking the total height of a user’s screen. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>
      Screen height Property in HTML
    </title>
    <style>
        h1 {
            color: green;
        }
          
        h2 {
            font-family: Impact;
        }
          
        body {
            text-align: center;
        }
    </style>
</head>
  
<body>
  
    <h1>GeeksforGeeks</h1>
    <h2>Screen height Property</h2>
      
<p>
      For checking the screen's total height, 
      double click the "Check Height" button: 
    </p>
  
    <button ondblclick="check_height()">
      Check Height
    </button>
  
    <p id="height"></p>
  
    <script>
        function check_height() {
            var h = 
                "Total Screen Height In Pixels : " 
                                + screen.height;
            document.getElementById("height").innerHTML = h;
        }
    </script>
</body>
</html>


Output: 
Before clicking the button:

After clicking the button:

Supported Browsers: The browser supported by Screen height are listed below: 

  • Google Chrome 1
  • Edge 12
  • Internet Explorer 4
  • Firefox 1
  • Opera 12.1
  • Safari 1


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads