I have the following markup:
<ul>
<label class="radio-label" for="${response[i].name}"><li><span>${freightName}:</span> ${response[i].price},-</li></label>
<input class="radio-input" type="radio" id="${response[i].name}" name="drone" value="${response[i].name}-radio-value">
</ul>
I get this as the result:
I tried to set the label to position: absolute; but this just makes it more difficult to space vertically after, is there anyone who can give me a tip or two? Any help is greatly appreciated !
Cheers!