JSFiddle - React, Tailwind, and code Playground

by David Thomas

HTML

<input id="case1" type="radio" name="cases" value="500.00" /><label for="case1">Desktop Case ($500.00)</label>
<input id="case2" type="radio" name="cases" value="600.00" /><label for="case2">Mini-Tower Case ($600.00)</label>
<input id="case3" type="radio" name="cases" value="700.00" /> <label for="case3">Full-Tower Case ($700.00)</label>

CSS

input[type=radio]:checked + label {
    color: red;
    font-weight: bold;
}