La propiedad DOM HR width se utiliza para establecer o devolver el valor del atributo de ancho de un elemento HR.
Nota: esta propiedad no es compatible con HTML5.
Sintaxis:
- Devuelve una propiedad de ancho de recursos humanos.
hrobject.width;
- Establece la propiedad de ancho de HR.
hrobject.width="pixels|%"";
Valores de propiedad
- pixel: Especifica el ancho del Elemento HR en términos de píxeles.
- %: Establece el ancho del atributo <hr> en términos de porcentaje (%).
Valor devuelto: Devuelve un valor de string que representa el ancho de un Elemento HR.
Ejemplo 1: este ejemplo devuelve la propiedad de ancho de recursos humanos.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM hr width property</title> </head> <body> <H1>GeeksForGeeks</H1> <h2>DOM HR width Property</h2> <p>There is a horizontal rule below this paragraph.</p> <!-- Assigning id to 'hr' tag. --> <hr id="GFG" align="left" width="140px"> <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").width; document.getElementById("sudo").innerHTML = x; } </script> </body> </html>
Producción:
- 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 ancho de recursos humanos.
HTML
<!DOCTYPE html> <html> <head> <title>HTML DOM hr width property</title> </head> <body> <H1>GeeksForGeeks</H1> <h2>DOM HR width Property</h2> <p>There is a horizontal rule below this paragraph.</p> <!-- Assigning id to 'hr' tag. --> <hr id="GFG" align="left" width="140px"> <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").width = "280px"; document.getElementById("sudo").innerHTML = "The value of the width Attribute was changed to " + x; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA