HTML | <fieldset> nombre Atributo

El atributo de nombre HTML <fieldset> se utiliza para especificar el nombre del elemento Fieldset . Se utiliza para hacer referencia a los datos del formulario después de enviar el formulario o para hacer referencia al elemento en un JavaScript. 
Sintaxis: 

<fieldset name="text"> 

Valores de atributo: contiene el valor, es decir, el nombre que especifica el nombre del elemento de conjunto de campos. 
Ejemplo: 

html

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

Producción: 

Navegadores compatibles: 

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

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 *