Remove blinking cursor from input tag

by Kheema Pandey

HTML

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

<input type="text" style="color: transparent;text-shadow: 0 0 0 red;" />

CSS

/*input{
border: 1px solid;
color: transparent;
text-shadow: 0 0 0 red;
text-align: center;
font-size: 2em;
}*/