I have this in my css & html:
.color-choose input[type="radio"]#red + label span {
/* background: url('https://content.rolex.com/dam/2021/upright-bba/m124200-0001.png?impolicy=v6-upright') */
background-color: #000;
}
<input data-image="red" type="radio" id="red" name="color" value="red" checked>
<label for="red"><span></span></label>
what I am trying to do is have the background of the button to be the image, instead of the color. is this possible?