Skip to content

Instantly share code, notes, and snippets.

@goonoo
Created May 6, 2013 06:56
Show Gist options
  • Save goonoo/5523719 to your computer and use it in GitHub Desktop.
Save goonoo/5523719 to your computer and use it in GitHub Desktop.
VoiceOver 등 모든 스크린리더에서 읽어주는 방식의 요소 숨기기 (참고: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility)
.blind {
position: absolute !important;
height: 1px; width: 1px;
overflow: hidden;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment