I want to hide the typewriter (this blinking | mark) from my input, is there any way to do it using CSS?
input {
some css proerty to hide the typewriter
}
I want to hide the typewriter (this blinking | mark) from my input, is there any way to do it using CSS?
input {
some css proerty to hide the typewriter
}
yes u can do it by using.Just make sure to adjust the other styling properties of your input field as needed to ensure it looks the way you want it to without the cursor being visible.
input {
caret-color: transparent; /* Hide the blinking cursor */
}