treehouse : what would you like to learn today?
Web Design Web Development iOS Development

[Solved] Getting rid of latest Chrome build's blue outline on :focus

  • Is it possible to override this blue outline on :focus in latest chrome? Not having any luck...
  • If I understand you right, try adding: outline: none; to it. If not, maybe a Codepen example would be better.
  • Well, I couldn't recreate the problem via codepen so that got me thinking it must be a Twitter Bootstrap problem. Turns out they change the default webkit focus from outline to box-shadow. A simple box-shadow: none; and all my problems solved! Thanks!
  • No problem, and yeah, If I knew that you were using Bootstrap, that would have helped because twitter uses little animations for their own custom outline. The Chrome outline color is always square and orange.