Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Research

haydn edited this page Apr 10, 2013 · 3 revisions

Skip to Content Links

http://terrillthompson.com/blog/161#comment-828

  • use javascript to help out webkit and firefox focus on the element
  • use a negative tab index to remove it from tabbing, make make it still linkable via js
  • hide the skip link using a negative text-indent so screen readers still see it
  • put the anchor element just before the main heading, give it an id and a name

Media Queries in IE

You can use this polyfill for media queries in IE 7 & 8:

http://code.google.com/p/css3-mediaqueries-js/

Make sure you use "screen" in your query:

@media screen and (max-width: 960px) {
...
}
Clone this wiki locally