1
HTML/CSSIntermediate#css#accessibility
:focus applies to any focused element, including after a mouse click, which can produce unwanted outlines. :focus-visible applies only when the browser determines focus should be visibly indicated — typically from keyboard navigation — giving cleaner UX for mouse users while preserving accessibility for keyboard users.
button:focus { outline: none; } /* removes for all */
button:focus-visible { outline: 2px solid blue; } /* only shows for keyboard nav */