Skip to content

Instantly share code, notes, and snippets.

@demoive
Last active February 9, 2025 17:16
Show Gist options
  • Save demoive/4648979 to your computer and use it in GitHub Desktop.
Save demoive/4648979 to your computer and use it in GitHub Desktop.
Snippet - CSS Hide text
.hide-text {
display: block;
white-space: nowrap;
text-indent: 100%;
overflow: hidden;
}
.hide {
position: absolute;
clip: rect(1px, 1px, 1px, 1px);
// only needed for an apparent bug in Webkit/Opera
// http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
height: 1px;
width: 1px;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment