Last active
November 20, 2018 20:20
-
-
Save michaelwhyte/564fc5281c68691b265a0ad292cb5721 to your computer and use it in GitHub Desktop.
Screen Reader Only Class from Bootstrap
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
.sr-only { | |
position: absolute; | |
width: 1px; | |
height: 1px; | |
padding: 0; | |
overflow: hidden; | |
clip: rect(0, 0, 0, 0); | |
white-space: nowrap; | |
-webkit-clip-path: inset(50%); | |
clip-path: inset(50%); | |
border: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment