Created
November 15, 2010 15:04
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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