I want to create some decent inputs for my form, and I would really like to know how TWITTER does their glowing border around their inputs.

Example/Picture of the Twitter border: http://i.stack.imgur.com/08yd6.png

I also don't quite know how to create the rounded corners :-/.

Please help me out! Thanks! :)

link|improve this question

40% accept rate
feedback

6 Answers

up vote 21 down vote accepted

Here you go:

input {
    border:2px solid #dadada;
    border-radius:7px;
    font-size:20px;
    padding:5px; 
}

input: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)

link|improve this answer
feedback

How about something like this... http://jsfiddle.net/Qwpq4/4/

CSS

input {
    border: 1px solid #4195fc; /* some kind of blue border */

    /* other CSS styles */

    /* round the corners */
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;


    /* make it glow! */
    -webkit-box-shadow: 0px 0px 4px #4195fc;
       -moz-box-shadow: 0px 0px 4px #4195fc;
            box-shadow: 0px 0px 4px #4195fc; /* some variation of blue for the shadow */

}

I hope this helps.
Hristo

link|improve this answer
feedback

Use a normal blue border, a medium border-radius, and a blue box-shadow with position 0 0.

link|improve this answer
Thanks for the explanation though :) – Hans Apr 14 '11 at 23:36
feedback

Here's a tutorial that teaches you how: CSS glow effects with box-shadow

link|improve this answer
Exactly what I wanted. I love you, thanks! Sadly I can't accept this answer since you were so quick! – Hans Apr 14 '11 at 23:36
@Hans: Haha! Steady on... I'll settle for a click of the tick :) – Town Apr 14 '11 at 23:37
feedback

SLaks hit the nail on the head but you might want to look over the changes for inputs in CSS3 in general. Rounded corners and box-shadow are both new features in CSS3 and will let you do exactly what you're looking for. One of my personal favorite links for CSS3/HTML5 is http://diveintohtml5.ep.io/ .

link|improve this answer
feedback

I combined two of the previous answers (jsfiddle).

input {
    /* round the corners */
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;    
}

input:focus { 
    outline:none;
    border: 1px solid #4195fc; 
    /* create a BIG glow */
    box-shadow: 0px 0px 14px #4195fc; 
    -moz-box-shadow: 0px 0px 14px #4195fc;
    -webkit-box-shadow: 0px 0px 14px #4195fc;  
}​
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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