Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change textarea cursor color in the textarea

Tags:

css

textarea

I have the following textarea:

Textarea example

How can I change the inner cursor color?

like image 823
Dor Cohen Avatar asked Nov 26 '22 15:11

Dor Cohen


1 Answers

I know that the question is old and out of date. But the question remains unanswered. Let's fix it.

Сaret-color is probably what you were looking for.

textarea{
caret-color: red;
}
<textarea>
</textarea>
like image 56
DiD Avatar answered Jun 01 '23 18:06

DiD