anyone know how to add an active state to the labeled radio-button?
HTML:
<label class="blacksize" for="XS">
<input type="radio" name="comment" value="XS" size="50" required checked>XS<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Small" size="50" required>S<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Medium" size="50" required>M<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="Large" size="50" required>L<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="XL" size="50" required>XL<br>
</label>
<label class="blacksize">
<input type="radio" name="comment" value="XXL" size="50" required>XXL<br>
</label>
Which CSS-styling can I use to make the selected radio's label have an "active"/"selected" state as you have in menus etc?
LIKE THIS: http://i.cubeupload.com/xURJ8M.jpg