It is necessary to smooth the first letter of the option tag option flag.
Here's what you tried:
HTML:
<select>
<option class="selected">test1</option>
<option>test2</option>
<option>test3</option>
</select>
CSS
select option.selected::first-letter{
text-transform:capitalize;
}
source
share