CSS: create white glow around image

Use simple CSS3 (not supported in IE<9) img { box-shadow: 0px 0px 5px #fff; } This will put a white glow around every image in your document, use more specific selectors to choose which images you’d like the glow around. You can change the color of course 🙂 If you’re worried about the users that … Read more

CSS/HTML: Create a glowing border around an Input Field

Here you go: .glowing-border { border: 2px solid #dadada; border-radius: 7px; } .glowing-border:focus { outline: none; border-color: #9ecaed; box-shadow: 0 0 10px #9ecaed; } Live demo: http://jsfiddle.net/simevidas/CXUpm/1/show/ (to view the code for the demo, remove “show/” from the URL) label { display:block; margin:20px; width:420px; overflow:auto; font-family:sans-serif; font-size:20px; color:#444; text-shadow:0 0 2px #ddd; padding:20px 10px 10px … Read more