Visually hidden, still read aloud

Css

Hides a label from sight while leaving it in the accessibility tree. display:none would remove it from both.

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

More in Web & CSS

Random picks