Highlight checked checkbox or radio button

PHOTO EMBED

Wed Feb 07 2024 00:31:20 GMT+0000 (Coordinated Universal Time)

Saved by @ppSan #css #html #form #checkbox #radio_button

<style> 
  INPUT:checked + label {color: #00F;} 
</style>

<input id="theId" type="checkbox"><label for="theId"> The cat is here</label> 
<fieldset style="width:fit-content"><legend>Where is the Cat?</legend>
	<input id="cat_garden" name="cat_where" type="radio"><label for="cat_garden"> Garden</label> 
	<input id="cat_bed" name="cat_where" type="radio"><label for="cat_bed"> Bed</label> 
	<input id="cat_cushion" name="cat_where" type="radio"><label for="cat_cushion"> Cushion</label> 
</fieldset>
content_copyCOPY

Highlight selected (clicked) checkbox or radio button option. UI Helper