How to use label tag in html
This time I will introduce to you how to use the label tag in HTML. We all know that a complete form is composed of the form tag
and the various forms wrapped in itControls, then the LABEL label is a common form control. Let’s take an example first:
[html] view plain copy <label for="email">E-mail:</label> <input type="text" id="email">
Form controls are all inline elements, so they will be displayed on one line. In the web page, when we click on the word E-mai or the text box, the cursor will appear in the text box. This is the function of the label tag. To put it bluntly, the label label is an extension of the form control it is associated with. That is, clicking it with the mouse will have the same effect as clicking the form control it is associated with. The premise is that the attribute value of the label's for attribute is the same as the id of the form control you want to associate.
If you don’t want to use id to associate with for, you can also use the second method.
[html] view plain copy
<label>E-mail:<input type="text"></label>
The effect is the same as before.
Of course other form controls can also be associated with labels. For example, the following example:
[html] view plain copy <label for="a">a:</label> <input type="radio" id="a"><br> [html] view plain copy <pre name="code" class="html" style="font-size: 14px;"><label for="b">b:</label> <input type="radio" id="b"><br> [html] view plain copy <label for="c">c:</label> <input type="radio" id="c">
Then you may say that this label label is not very useful even if you think about it.
Well, of course it works. In addition to enhancing user experience, it also provides convenience for people with reduced mobility to access the Internet. For example, visually impaired people use the sound of a "web page reader" to browse the web. Without the association of label tags, surfers cannot imagine the correspondence in their minds and cannot well understand what the website form means. the content of the expression. For another example, surfers with physical disabilities have difficulty controlling the mouse. After using label, the click target becomes larger, which is easier for operation.
So, a truly good page must be cross-browser and adaptable to devices with screens of various sizes. It should also be accessible to all types of Internet users (whether they are the elderly or those with disabilities). people) to provide convenience. There are only so many ways to use label tags in
html. Friends who need it can save it. Please also continue to pay attention to other updates of this site.
Related reading:
The above is the detailed content of How to use label tag in html. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1377
52
Table Border in HTML
Sep 04, 2024 pm 04:49 PM
Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.
HTML margin-left
Sep 04, 2024 pm 04:48 PM
Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.
Nested Table in HTML
Sep 04, 2024 pm 04:49 PM
This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.
HTML Table Layout
Sep 04, 2024 pm 04:54 PM
Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.
HTML Input Placeholder
Sep 04, 2024 pm 04:54 PM
Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.
HTML Ordered List
Sep 04, 2024 pm 04:43 PM
Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively
Moving Text in HTML
Sep 04, 2024 pm 04:45 PM
Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.
HTML onclick Button
Sep 04, 2024 pm 04:49 PM
Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.


