Home > Enterprise >  Remove the typing indicator from textarea
Remove the typing indicator from textarea

Time:10-24

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

CodePudding user response:

You can colour the caret only instead of the text:

textarea {
  caret-color: transparent;
}

CodePudding user response:

use this property

caret-color: transparent;
  • Related