Increase the blinking caret's width & height in input field using CSS3 or Javascript?
<input type="text" value="" />
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.
Share Improve this question edited Jul 10, 2017 at 9:42 Asons 87.3k12 gold badges117 silver badges174 bronze badges asked Jul 10, 2017 at 7:10 anand vishwakarmaanand vishwakarma 791 silver badge7 bronze badges 1- 1 Search for caret, not cursor....and the closest you can get today is to simulate it using script: stackoverflow./questions/7339333/styling-text-input-caret – Asons Commented Jul 10, 2017 at 8:24
1 Answer
Reset to default 6You 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>