Gli ultimi tutorial di sviluppo web
 

HTML <label> for Attribute

<HTML <label> tag

Esempio

Tre pulsanti di opzione con etichette:

<form action="demo_form.asp">
  <label for="male">Male</label>
  <input type="radio" name="gender" id="male" value="male"><br>
  <label for="female">Female</label>
  <input type="radio" name="gender" id="female" value="female"><br>
  <label for="other">Other</label>
  <input type="radio" name="gender" id="other" value="other"><br><br>
  <input type="submit" value="Submit">
</form>
Prova tu stesso "

Definizione e utilizzo

Il for attributo specifica quale forma elemento etichetta è destinata a.


Supporto per il browser

Attributo
for

Differenze tra HTML 4.01 e HTML5

NESSUNA.


Sintassi

<label for="element_id">

I valori degli attributi

Valore Descrizione
element_id L'ID dell'elemento l'etichetta è destinata a

<HTML <label> tag