I don't believe this question is a duplicate, I have read Pure CSS Checkbox Image replacement and I am taking code from http://www.hongkiat.com/blog/css3-checkbox-radio/
My issue is that I do not want to use IDs for my checkboxes as this is a template and many may be included on the same page. I've almost gotten everything working but I cannot select the label:before when the checkbox is checked to change it to a different background color.
HTML
<label><input type="checkbox" /></label>
CSS ( the last selector is the one I'm trying to get to work )
input[type="checkbox"] {
display:none;
}
label {
display: inline-block;
cursor:pointer;
position:relative;
font-size:13px;
top:0;
right:-30px;
width:16px;
}
label:before {
content: "";
display:inline-block;
width:16px;
height:16px;
margin-right:10px;
position:absolute;
left:0;
bottom:1px;
background-color:#aaa;
}
input[type="checkbox"]:checked + label:before {
content:"";
background:#219161;
margin-right:10px;
position:absolute;
left:0;
bottom:1px;
height:16px;
width:16px;
display:inline-block;
padding:0 0 0 0;
}
You can add an extra span inside the
label
but after theinput
and use the pseudo-element on that