Strange outline appears in Chrome 83/IE on my Windows 10 Strange outline appears in Chrome 83/IE on my Windows 10 google-chrome google-chrome

Strange outline appears in Chrome 83/IE on my Windows 10


I think you can achieve it with something like this

*:focus {   outline: 1px solid aliceblue}

so you can define for all of your elements which outline to render on focus.

a similar question can be found here Chrome default focus outline

ps: although I think the new chrome outline is ugly as hell, don't forget that disabling it at all is a bad practicehttp://www.outlinenone.com/

cheers


it's a new "feature" of chrome 83....(that afflict all S.O.) I hope will be removed soon. https://support.google.com/chrome/thread/48974735?hl=en


The teams at Microsoft Edge and Google Chrome spent the last year collaborating to retheme and improve the functionality of the built-in form controls on Chromium browsers. ... The new focus indicator uses a thick dark ring with a thin white outline, which should improve visibility on both light and dark backgrounds. This is an easy accessibility win that automatically improves the keyboarding experience on a number of sites without developers needing to write any new code. What's New in Chrome 83

You could easily totally remove or customize the focus outline for all or any element that you want like below:

*:focus {   outline: none; /* or customize it */}