HTML | <hr> alinear atributo

El atributo HTML <hr> align se utiliza para especificar la alineación de la línea horizontal . Si el atributo de ancho no se establece en 100%, el atributo de alineación no creará ningún efecto.
Sintaxis: 

<hr align="left | center | right">

Valores de atributos:  

  • izquierda: Establece la alineación izquierda a la línea horizontal.
  • centro: Establece el centro-alinear a la línea horizontal. Es el valor predeterminado.
  • right: Establece la alineación derecha a la línea horizontal.

Nota: el atributo de alineación <hr> no es compatible con HTML 5.
Ejemplo:  

html

<!DOCTYPE html>
<html>
 
<head>
    <style>
        h1,h2
        {
            text-align:center;
        }
        h4
        {
            font-weight:bold;
        }
        .gfg
        {
           text-align:right;
            font-weight:bold;
        }
        .gfg2
        {
            font-weight:bold;
            text-align:center;
        }
    </style>
</head>
 
<body>
     
    <h1>GeeksforGeeks</h1>
    <h2>
        HTML hr align Attribute
 
    </h2>
    <h4>
        hr align="left"
    </h4>
    <hr width="300px;"
        size="10"
        align="left">
    <h4 class="gfg">
        hr align="right"
    </h4>
    <hr width="50%" align="right"
        size="10">
        <h4 class="gfg2">
           hr align="center"       
        </h4>
     
    <hr width="50%"
        size="10"
        align="center">
</body>
 
</html>

Producción: 

 
Navegadores compatibles: los navegadores compatibles con HTML <hr> align Attribute se enumeran a continuación: 

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

Publicación traducida automáticamente

Artículo escrito por jit_t 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 *