suitcss / base

CSS base styles for web apps (a thin layer on top of normalize.css)
http://suitcss.github.io/base/test/
MIT License
194 stars 24 forks source link

Remove outline from elements removed from tab flow #2

Closed necolas closed 11 years ago

necolas commented 11 years ago
/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * Prevents the dotted outline from persisting around some block links that
 * open in a new window.
 */

[tabindex="-1"] {
  outline: none;
}