Difference between revisions of "For attribute (HTML)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(Created page with "In HTML, the for attribute ...")
 
Line 1: Line 1:
In [[HTML]], the for attribute ...
+
In [[HTML]], the '''for attribute''' is an attribute of the [[Label (HTML element)|label element]].
 +
 
 +
== Description ==
 +
 
 +
The caption can be associated with a specific form control:
 +
 
 +
* Using for attribute.
 +
* By putting the form control inside the label element itself.
 +
 
 +
== HTML Attributes =
 +
 
 +
=== form = string ===
 +
 
 +
Associate the fieldset element with its form owner.
 +
 
 +
=== for = string ===
 +
 
 +
Specified to indicate a form control with which the caption is to be associated.
 +
 
 +
The attribute's value must be the ID of a labelable form-associated element in the same Document as the label element.
 +
 
 +
== See also ==
 +
 
 +
* [[HTML]]
 +
* [[HTML element]]
 +
* [[Label (HTML element)]]
 +
 
 +
== External links ==
 +
 
 +
* [http://stackoverflow.com/questions/18432376/what-does-for-attribute-do-in-html-label-tag What does “for” attribute do in HTML <label> tag?] @ w3schools.com
 +
 
 +
 
 +
[[Category:HTML elements]]
 +
 
 +
 
 +
 
 +
http://www.w3schools.com/tags/att_label_for.asp

Revision as of 05:21, 2 May 2016

In HTML, the for attribute is an attribute of the label element.

Description

The caption can be associated with a specific form control:

  • Using for attribute.
  • By putting the form control inside the label element itself.

= HTML Attributes

form = string

Associate the fieldset element with its form owner.

for = string

Specified to indicate a form control with which the caption is to be associated.

The attribute's value must be the ID of a labelable form-associated element in the same Document as the label element.

See also

External links


http://www.w3schools.com/tags/att_label_for.asp