Skip to content

Instantly share code, notes, and snippets.

View Toomean's full-sized avatar

Artem Tumin Toomean

View GitHub Profile
@Toomean
Toomean / css-visually-hidden.css
Created August 29, 2019 10:18
CSS: Visually hidden
.visually-hidden {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px, 1px, 1px, 1px);
padding:0 !important;
border:0 !important;
height: 1px !important;
width: 1px !important;
overflow: hidden;
}