Here is my HTML code snippet:
<div class="col-md-12 money-radio-container">
<input type="radio" name="optradio" class="money-radio" value="10">10 <span>$</span>
<input type="radio" name="optradio" class="money-radio" value="20">20 <span>$</span>
<input type="radio" name="optradio" class="money-radio" value="50">50 <span>$</span>
</div>
I am looking to apply a red color to the selected radio button. How can I achieve this using CSS?
Please note that clicking on each radio button does not trigger any changes in the HTML, making it difficult to identify which one is selected.
Fiddle: https://jsfiddle.net/rrmzvkag/3/