La etiqueta <fieldset> en HTML5 se usa para hacer un grupo de elementos relacionados en el formulario y crea el cuadro sobre los elementos. La etiqueta <fieldset> es nueva en HTML5.
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">
Valor del atributo: contiene el nombre del valor del atributo que especifica el nombre del elemento del conjunto de campos.
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <title> How to specify a name for the fieldset using HTML ? </title> <style> h1, h2 { text-align: center; } h1 { color: green; } fieldset { width: 50%; margin-left: 22.5%; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> How to specify a name for the fieldset using HTML ? </h2> <form id="myGeeks"> <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> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- Ópera
- safari de manzana