Open In App

HTML DOM Screen height Property

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. 




<!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: 


Article Tags :