Created
September 17, 2018 08:52
-
-
Save liximomo/62b98e96c6964b30ac58f5edf7f1f86b to your computer and use it in GitHub Desktop.
Hide element but remain available to assistive technology.
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
.AccessibleOnly { | |
clip: rect(1px 1px 1px 1px); /* IE 6/7 */ | |
clip: rect(1px, 1px, 1px, 1px); | |
height: 1px; | |
overflow: hidden; | |
position: absolute; | |
white-space: nowrap; /* added line */ | |
width: 1px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment