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.
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.
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>