Today I Learned

[CSS] Use outline for focus style

October 3, 2023

The `outline` property is fit for the focus style:

It is often used for accessibility reasons, to emphasize a link when tabbed to without affecting positioning and in a different way than hover.

a:focus {
  outline-width: 1px;
  outline-style: dashed;
  outline-color: red;
}

Reference

https://css-tricks.com/almanac/properties/o/outline/

← All posts