I'm struggeling with removing the blinking indicator that pops up when writing something into my textarea. I've tried matching the color to the background color, but that hid my text as well. Does anyone have a quick fix for this in html/css? Thanks a lot ;)
Asked
Active
Viewed 298 times
0
-
Or maybe even this? https://stackoverflow.com/questions/44845792/hide-cursor-in-textarea – Adam Oct 24 '22 at 12:39
-
So why do you want to hide the cursor? Seems like an odd request. – epascarello Oct 24 '22 at 12:52
-
2Do you want to hide it because you think it looks cooler? Don't do it, this indicator is there for a reason. – cloned Oct 24 '22 at 12:54
2 Answers
2
You can colour the caret only instead of the text:
textarea {
caret-color: transparent;
}

Grant
- 5,709
- 2
- 38
- 50