Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I noticed some browsers make some fields glow when you select a form, Chrome makes them have a yellow glow for example. How do you make a field glow? I believe it's something you specify loosely on the code since different browsers do different colors. How does that work? Is there a simple way I could do it?

share|improve this question
3  
Retagged as this has nothing to do with PHP, everything to do with CSS :) – BoltClock Dec 26 '10 at 16:39

1 Answer

up vote 9 down vote accepted

Check out the demo


CSS Used:

input:focus,textarea:focus,select:focus{
 border:1px solid #fafafa;
 -webkit-box-shadow:0 0 6px #007eff;
 -moz-box-shadow:0 0 5px #007eff;
 box-shadow:0 0 5px #007eff;
}

You can also check out this page i had created similar effect

Note:

The box-shadow is CSS3 property meaning it won't work in IE<8, however you can use something like CSS3PIE to get the support even in IE :)

share|improve this answer
1  
In Chrome this demo gets an odd double glow border. In IE9 it messes with the margins, I guess since IE9 form elements doesn't already have a border. There are the two only browsers I tested in, and I'm not surprised such a small bit of CSS doesn't work too well. – Codemonkey Apr 25 '11 at 20:21
1  
To fix the double glow border error, use: outline:none; – Rotharius Sep 1 '12 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.