I am a newbie in web programming and I am looking for a way to capitalize just the first letter of a textarea. I've already tried this solution found on the web but it doesn't work.
<p class="textarea_part">
<textarea name="#" placeholder="La tua richiesta"></textarea>
</p>
<style>
.textarea_part::first-letter {
text-transform: capitalize;
}
</style>
How can I solve this problem?