Pages

Wednesday, January 23, 2013

Add a glow around textarea on focus in html forms

In the css file, add the following lines:

textarea{border: 1px solid #ccc;}
textarea:focus{box-shadow: 0 0 8px rgba(82,168,236,.5); border: 1px solid rgba(82, 168, 236, .75);}

No comments: