2

Native apps on Android have a better cursor caret width. But for web apps and pwa, the caret width seem to be very thin. Could someone tell me how can I increase the cursor width, if it is even feasible?

Wajahath
  • 2,827
  • 2
  • 28
  • 37
  • You will need to use an image as the cursor. Be aware browser support is mostly good, but there are a few catches. See this answer for an example. https://stackoverflow.com/questions/18551277/using-external-images-for-css-custom-cursors – daddygames May 06 '21 at 12:40

1 Answers1

4

You can't change the way the cursor caret looks in a textarea. The most you can do is change the color. https://developer.mozilla.org/en-US/docs/Web/CSS/caret-color.

I suggest you take a look at these links too:

How to control cursor/caret size with CSS

How to adjust the Caret (blinking cursor) size inside searchbar with css

I hope I helped somewhat.

Kleo Zane
  • 228
  • 2
  • 10