User-501297529 posted
I want to style input checkboxes and radio buttons so it is purple checkmark, purple border and white background.
I tried this for a checkbox but it didn't work. Is this possible to do with checkboxes and radio buttons.
.checkmark {
;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: #fff;
border: purple;
}
<input type="checkbox"> Four
<span class="checkmark"></span>
</label>