Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Remove Blinking Cursor From Input Field

How to remove blinking cursor from an input element

Here is a real quick fix for that annoying Blinking Cursor in an input field.

HTML:

<input type="text" name="" class="input">

CSS:

.input{
    color: transparent;
    text-shadow: 0 0 0 red;
}

.input:focus{
    outline: none;
}

To change the color of your input text edit the text-shadow color to your desired color.



This post first appeared on Web Design & Development Blog -, please read the originial post: here

Share the post

Remove Blinking Cursor From Input Field

×

Subscribe to Web Design & Development Blog -

Get updates delivered right to your inbox!

Thank you for your subscription

×