HTML | Altura de la pantalla Propiedad

La propiedad Altura de la pantalla se utiliza para devolver la altura total de la pantalla de un usuario. Devuelve la altura total de la pantalla en píxeles.
Sintaxis: 
 

screen.height

Valor devuelto: un número que representa la altura total de la pantalla del usuario, en píxeles

El siguiente programa ilustra la propiedad Altura de la pantalla:
Comprobación de la altura total de la pantalla de un usuario. 
 

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>
                    

Producción: 
 

Después de hacer clic en el botón 
 

Navegadores compatibles: los navegadores compatibles con Screen height se enumeran a continuación: 
 

  • Google Chrome
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

Publicación traducida automáticamente

Artículo escrito por Shubrodeep Banerjee y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *