HTML | Atributo de formulario <fieldset>

El HTML | El atributo de formulario <fieldset> se utiliza para especificar uno o más formularios a los que pertenece el elemento <fieldset>
Sintaxis: 

<fieldset form="form_id">

Valores de atributos: 

  • form_id: contiene el valor, es decir, form_id que especifica el no. de formularios a los que pertenece el elemento <fieldset> . El valor de este atributo debe ser el id del elemento <form>
     

Ejemplo:  

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML fieldset form Attribute
    </title>
    <style>
        h1,
        h2,
        .title {
            text-align: center;
        }
         
        fieldset {
            width: 50%;
            margin-left: 22%;
        }
         
        h1 {
            color: green;
        }
    </style>
</head>
 
<body>
    <h1>GeeksforGeeks</h1>
    <h2>
      HTML <fieldset>
      form Attribute
  </h2>
    <form id="mygeeks">
        <div class="title">
            Suggest article for video:
        </div>
    </form>
   
    <fieldset form="mygeeks">
        <legend>JAVA:</legend>
        Title:
        <input type="text">
        <br> Link:
        <input type="text">
        <br> User ID:
        <input type="text">
    </fieldset>
    <br>
    <fieldset form="mygeeks">
        <legend>PHP:</legend>
        Title:
        <input type="text">
        <br> Link:
        <input type="text">
        <br> User ID:
        <input type="text">
    </fieldset>
 
</body>
 
</html>

Producción : 
 

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

  • Google Chrome
  • Borde 12 y superior
  • explorador de Internet
  • Firefox
  • Ópera
  • Safari

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 *