Answers for "how to make a checkbox uncheked in 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

how to set unclickable checkbox using css

set pointer-events:none; in the elements style attribute.
Posted by: Guest on April-28-2021

Code answers related to "how to make a checkbox uncheked in css"

Browse Popular Code Answers by Language