checkbox empty css code example
Example 1: color checkbox css when clicked
input[type=checkbox]:checked {
/*CSS after CHECKED*/
color: #ffd369;
}
Example 2: not checked css
input[type="checkbox"]:unchecked{
<style>
}
input[type=checkbox]:checked {
/*CSS after CHECKED*/
color: #ffd369;
}
input[type="checkbox"]:unchecked{
<style>
}