How to smooth the first letter in a selection option using css

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;
}
+4
source share
1 answer

Try this code. if you want the selected option to be uppercase, then you can do as shown below in HTML. This should work in most browsers.

select option {
  text-transform: capitalize;
 }

<select>
  <option class="selected">Test1</option>
  <option>test2</option>
  <option>test3</option>
</select>
-1
source

Source: https://habr.com/ru/post/1620040/


All Articles