0

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 ;)

2 Answers2

2

You can colour the caret only instead of the text:

textarea {
  caret-color: transparent;
}
Grant
  • 5,709
  • 2
  • 38
  • 50
2

use this property

caret-color: transparent;
Shoaib Amin
  • 207
  • 1
  • 4