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
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
Simply change some styles for your form elements and the browser's defaults will not take effect.
.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;
}