Answers for "input checkbox with label css"

CSS
4

checkbox input in css

//all checkbox
input[type="checkbox"]{
  box-shadow: 0 0 0 3px hotpink;
}

// all checked checkbox
input[type="checkbox"]:checked {
  box-shadow: 0 0 0 3px hotpink;
}
Posted by: Guest on November-18-2020
0

css select labels for checked checkbox

input[type="checkbox"]:checked + label  { color:green; }
/* input:checked + label  { color:green; } /* short version */
Posted by: Guest on March-21-2022

Browse Popular Code Answers by Language