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

c# - ASP.NET MVC Sequence contains no matching element -

java - Parsing XML, skip certain tags -

rest - How to invalidate user session on inactivity in a stateless server? -