Answers for "html css input[type="checkbox" i]"

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

Code answers related to "html css input[type="checkbox" i]"

Browse Popular Code Answers by Language