Skip to content

Instantly share code, notes, and snippets.

@felipegenuino
Created May 27, 2019 20:27
Show Gist options
  • Save felipegenuino/445b742e1361bf26a0fe1f524cfaefb1 to your computer and use it in GitHub Desktop.
Save felipegenuino/445b742e1361bf26a0fe1f524cfaefb1 to your computer and use it in GitHub Desktop.
aria-label or screen-reader only text
.screen-reader-only {
position: absolute;
height: 1px;
width: 1px;
clip: rect(1px 1px 1px 1px); // IE 6 and 7
clip: rect(1px,1px,1px,1px);
clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
overflow: hidden !important;
}
/* fonte: https://accessible360.com/accessible360-blog/use-aria-label-screen-reader-text/ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment