visually-hidden

PHOTO EMBED

Tue Apr 01 2025 08:38:28 GMT+0000 (Coordinated Universal Time)

Saved by @linabalciunaite #accessibility #css

/* Proven method to visually hide something but */
/* still make it available to assistive technology */
.visually-hidden {
  position: absolute;
  top: auto;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE 6/7 */
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  white-space: nowrap;
}
content_copyCOPY