How to remove/change the border when clicking inside an input field?

Cris picture Cris · Jun 8, 2011 · Viewed 42.6k times · Source

Click inside the search box at this site and you'll see what I mean. Is there a way to remove this? Also, if I decide to keep it, how can I change its dimensions?

Thanks, Cris

Answer

Petah picture Petah · Jun 8, 2011

Try this:

input[type="text"], input[type="password"], textarea, select { 
    outline: none;
}