HTML | Atributo de formulario <leyenda>

El atributo de formulario HTML <leyenda> se utiliza para especificar uno o más formularios a los que pertenece el elemento de leyenda.

Sintaxis:

<legend form="form_id">

Valores de atributos:

  • form_id: contiene el valor, es decir, form_id que especifica uno o más elementos a los que pertenece el botón. El valor de este atributo debe ser id de la
    elemento.

Ejemplos:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        HTML legend form Attribute
    </title>
  
    <style>
        form {
            width: 50%;
        }
          
        label {
            display: inline-block;
            float: left;
            clear: left;
            width: 90px;
            margin: 5px;
            text-align: left;
        }
          
        input[type="text"] {
            width: 250px;
            margin: 5px 0px;
        }
          
        .gfg {
            font-size: 40px;
            color: green;
            font-weight: bold;
        }
    </style>
</head>
  
<body>
    <h1 class="gfg"> 
        GeeksforGeeks 
    </h1>
  
    <h2>HTML legend form Attribute </h2>
  
    <form>
        <fieldset>
            <legend align="right" 
                    form="myGeeks">
              STUDENT:
          </legend>
            <label>Name:</label>
            <input type="text">
            <br>
            <label>Email:</label>
            <input type="text">
            <br>
            <label>Date of birth:</label>
            <input type="text">
            <br>
            <label>Address:</label>
            <input type="text">
            <br>
            <label>Enroll No:</label>
            <input type="text">
        </fieldset>
    </form>
</body>
  
</html>

Producción:

Navegadores compatibles: los navegadores compatibles con el atributo de formulario HTML <leyenda> se enumeran a continuación:

  • Google Chrome
  • explorador de Internet
  • Firefox
  • safari de manzana
  • Ó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

Deja una respuesta

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