Answers for "how to make check boxes in html"

0

html check-box

<form>
 <input type="checkbox" name="love" value="love" id="love"><label for="love"> Check if you love this website!</label>
</form>
Posted by: Guest on October-14-2021
0

how to make a div a checkbox html

input {
  display:none;
}
:checked + label {
  border: 1px solid rgba(81, 203, 238, 1);
  box-shadow: 0 0 5px rgba(81, 203, 238, 1);
}
Posted by: Guest on April-26-2021

Browse Popular Code Answers by Language