La propiedad de tamaño DOM HR se utiliza para establecer o devolver el valor del atributo de tamaño del elemento <hr>.
Nota : esta propiedad no es compatible con HTML5
Sintaxis:
- Devuelve la propiedad de tamaño de recursos humanos.
hrobject.size
- Se utiliza para establecer la propiedad de tamaño de recursos humanos.
hrobject.size="value"
Valores de propiedad:
- value: contiene el valor de píxel que especifica la altura del elemento HR.
Valor devuelto: Devuelve un valor de string que representa la altura del elemento HR.
Ejemplo 1: este ejemplo devuelve la propiedad de tamaño de recursos humanos.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM HR size property</title> </head> <body> <h1>GeeksForGeeks</h1> <h2>DOM HR size Property</h2> <p> There is a horizontal rule below this paragraph. </p> <!-- Assigning id to 'hr' tag. --> <hr id="GFG" align="left" size="10px" width="240px" color="red"> <p> This is a horizontal rule above this paragraph. </p> <button onclick="myGeeks()"> Try it </button> <h3 id="sudo"></h3> <script> function myGeeks() { // Accessing 'hr' tag. var x = document.getElementById("GFG").size; document.getElementById("sudo").innerHTML = x; } </script> </body> </html>
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo 2: este ejemplo establece la propiedad de tamaño de recursos humanos.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM HR size property</title> </head> <body> <H1>GeeksForGeeks</H1> <h2>DOM HR size Property</h2> <p> There is a horizontal rule below this paragraph. </p> <!-- Assigning id to 'hr' tag. --> <hr id="GFG" align="left" size="10px" width="240px" color="red"> <p> This is a horizontal rule above this paragraph. </p> <button onclick="myGeeks()">Try it</button> <h3 id="sudo"></h3> <script> function myGeeks() { // Accessing 'hr' tag. var x = document.getElementById("GFG").size = "5"; document.getElementById("sudo").innerHTML = "The value of the size Attribute " + "was changed to " + x; } </script> </body> </html>
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con la propiedad de tamaño DOM HR se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA