How to remove the yellow border from dropdowns on google chrome?
twitter-bootstrap
Solution
You can remove the outline by making it transparent like so:
select:focus {
outline-color: transparent;
}
Problem
How can i remove the yellow border from dropdowns on google chrome? The textboxes are ok, they show that great blue outline, but the dropdowns don't. Thanks in advance!