tags:

views:

56

answers:

3

i see that the form elements on facebook are not highlighted when in focus. how can i do that?

with chrome for example if i click on this textarea it becomes orange or yellow.

thx

+2  A: 
input:focus{outline:0;}
henasraf
A: 

Simply change some styles for your form elements and the browser's defaults will not take effect.

animuson
A: 
.textArea:focus
{
background-color:#FFF;
}

Apply this class to your textareas. Or apply them to all your areas at once:

input:focus
    {
    background-color:#FFF;
    }
tahdhaze09