Created
May 27, 2019 20:27
-
-
Save felipegenuino/445b742e1361bf26a0fe1f524cfaefb1 to your computer and use it in GitHub Desktop.
aria-label or screen-reader only text
This file contains 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
.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