I have a dropdown for selecting resolution and I am trying to have the text 'HD' appear in red. I have made a simple class to do this and assigned it to text but it will now appear as red in my option value.
<a class="red_color">HD</a> should be red
<div style="display:inline;" id="upload_1_fullAlbumResolutionChoiceDiv"><select id="upload_1_fullAlbumResolutionChoice"
style="max-width:150px; text-align: left;">
<option value="box_img.jpg" style="width:150px; text-align: left;">600x600 SD</option>
<option value="box_img.jpg" style="width:150px; text-align: left;">640x640 SD</option>
<option value="box_img.jpg" style="width:150px; text-align: left;">1280x1280 SD</option>
<option value="box_img.jpg" style="width:150px; text-align: left;" selected="selected">1920x1920 <div
class="red_color">HD</div></option>
<option value="box_img.jpg" style="width:150px; text-align: left;">2560x2560 <div style="color:red;">HD</div>
</option>
</select></div>
<style>
.red_color{
color:red
}
</style>