Skip to content

Instantly share code, notes, and snippets.

View ustinovp's full-sized avatar

Pavel Ustinov ustinovp

  • Prague - Czech Republic
View GitHub Profile
@ustinovp
ustinovp / css-visually-hidden.css
Created July 31, 2019 19:49
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;
}