css - How to cancel the blur effect of Html textbox? -



css - How to cancel the blur effect of Html textbox? -

how cancel blur effect of html textbox when focus on it?

<input type='text' style="background-color:#33ccff; color:#ad8c08; border:1px solid #ffffff; "></input>

you have utilize css on input element on focus eliminate "blur" effect you're talking about. take @ jsfiddle example.

http://jsfiddle.net/qfr8eng1/1/

html:

<input type="text" id="noeffect" value="look @ me!"/>

css:

#noeffect { background-color: #33ccff; color: #ad8c08; border: 1px solid #ffffff; } #noeffect:focus { outline: none; }

html css html5 css3

Comments

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -