Completion requirements
An <label>
element associates a text label with a form <input>
field and is implemented using the DOM HTMLLabelElement
interface. The label can tell users what value should be entered in the input field. Having labels helps the accessibility of a form. You can implicitly or explicitly associate a label with a form. When doing it explicitly, you use the for attribute
, and implicitly, you nest the <input>
directly inside the <label>
.
Styling with CSS
There are no special styling considerations for <label>
elements - structurally they are simple inline elements, and so can be styled in much the same way as a <span>
or <a>
element. You can apply styling to them in any way you want, as long as you don't cause the text to become difficult to read.