I am looking to customize my CheckBox. Below is the code I have written:
<div class="check-box-input">
<input type="checkbox">
</div>
I also want to add a style to the parent div when the input is checked. This is the code I tried, but it did not work as expected:
.check-box-input input:checked ~ .check-box-input {
background-image: url('../Images/CheckBox.png');
}