6

Increase the blinking caret's width & height in input field using CSS3 or Javascript?

<input type="text" value="" />
    

Increase the blinking cursor pointer width & height in input field.

Asons
  • 84,923
  • 12
  • 110
  • 165
  • 1
    Search for _caret_, not _cursor_....and the closest you can get today is to simulate it using script: https://stackoverflow.com/questions/7339333/styling-text-input-caret – Asons Jul 10 '17 at 08:24

1 Answers1

5

You can't increase caret height and width.

There is no css property to do that. But you can change the color of caret.

<style>
  input {
    caret-color:red;
  }
</style>
Corné
  • 1,304
  • 3
  • 13
  • 32
Golam Morshed
  • 81
  • 1
  • 5