Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
 
PREVIOUS NEXT
Tagged: #checkbox #input #css
ADD COMMENT
Topic
Name
4+3 =