Skip to content

Instantly share code, notes, and snippets.

@jensgro
Created November 15, 2010 15:04
Show Gist options
  • Save jensgro/700445 to your computer and use it in GitHub Desktop.
Save jensgro/700445 to your computer and use it in GitHub Desktop.
hide elements in stead of using "display: none" which hides content even for screenreaders.
.hide {
position:absolute;
top:-32768px;
left:-32768px;
}
/* if the page has "direction:rtl;" then "right" should be negative. */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment