I have a check box on a page:
I would like the change the white background color to yellow, how can I do it?
Below is the HTML code of that checkbox.
<div class="checkbox">
<label>
<input id="p-flag" type="checkbox" name="p_required" value="1"> Rrequired?
</label>
</div>
I tried
.checkbox{
background-color: yellow;
}
But that's not working.