Hello guys I am try to get only the first letter on this input element as upper case
input::first-letter
is not recognize, only input{text-transform: uppercase;}
and I try to achieve only value be Hello world how can I implement it on CSS only?
*that issue happened only on input element
input::first-letter {
text-transform: uppercase;
}
<input type="text" name="name" value="hello world">