Screenreader access


/ Published in: CSS
Save to your folder(s)

This snippet basically gives us the best of both worlds, allowing the best usability when it comes to link outlines for both screenreaders tabbing through links, and mouse users.


Copy this code and paste it in your HTML
  1. a:hover, a:active { outline: none; }
  2. a, a:active, a:visited { color:#607890; }
  3. a:hover { color:#036; }

URL: http://people.opera.com/patrickl/experiments/keyboard/test

Report this snippet


Comments


You need to login to view comments.