Jump to content

Labels should be in inputs for option buttons


metemaddar

Recommended Posts

For option buttons, when we click on labels, the option buttons should be selected. In order to achieve this, We need to put input inside labels.

For example instead of write this:

<input class="w3-check" type="checkbox" checked="checked">
<label>Milk</label>
We should write this:
<label>
<input class="w3-check" type="checkbox" checked="checked">
Milk</label>

Now when we click on CheckBox's label the checkbox gets checked.

This is the same for option button.

We can change this in html tutorials and w3.css tutorials too. like here.

Again thanks a lot for fantastic website. I've learned everything about web, First from W3Schools.

Chears.

 
Edited by metemaddar
Link to comment
Share on other sites

Actually what you can do is give the input a id reference and use attribute 'for' in the label with the value of the id ref to link them and do the same as placing input within a label.

<label for="male">Male</label>
  <input type="radio" name="gender" id="male" value="male"><br>

 

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...