From a presentation perspective, if I write a text between a <label> tag it looks identical as to if I hadn't.
So, why do we use this tag at all?
|
From a presentation perspective, if I write a text between a So, why do we use this tag at all? |
|||||||||||
|
|
The Example:
If you click on the text, it checks the box. |
||||
|
|
HTML is not about presentation. It is a way of describing data. If you have some text that represents a label for an input, you wrap it in label tags not for presentation but because that's what it is. Without the label tag, that text is almost meaningless. With the label tag and it's * you don't necessarily need the
|
|||||||||
|
|
It allows you to associate text or other elements with a particular input element. So, clicking on the text My Checkbox would activate the associated checkbox (as demonstrated in this fiddle)
Note that the [Edit] I've updated the fiddle to show some sample styling for a nice, big hit-area for the checkbox. Also, here's another fiddle showing some other controls. |
|||||||
|
|
The HTML eg:
This would mean that when the user clicks on the 'Label text', the checkbox would be toggled. This is useful for accessibility, general usability, and also allows some tricks such as making a toggle control that doesn't look like a checkbox, but does contain one behind the scenes. But aside from this If you're not going to use the |
|||
|
|
|
When you click on the label, the focus goes to the related input. Very handy for checkboxes when it is hard to hit the small rectangle. |
|||
|
|
|
From HTML label tag: "The label element does not render as anything special for the user. However, it provides a usability improvement for mouse users, because if the user clicks on the text within the label element, it toggles the control. The for attribute of the tag should be equal to the id attribute of the related element to bind them together." |
|||
|
|
|
Nothing from presentation point of view. Lable tag is used for defining label for an input element. From the semantic point of view, it should not be used for defining text. |
|||
|
|