outline and outline-offset
Typically, I’ve only seen outline
used for :active
styles, i.e. a:active { outline: none; }
. Smartypants Piotr Petrus clued me in to using outline
for offset borders with outline-offset
.
Note that outline
does not inherit border-radius
. Firefox does have -moz-outline-radius
just for this. No outline-radius in other browsers currently.