Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Last active February 2, 2023 00:05
Show Gist options
  • Select an option

  • Save dstyle0210/8dbe1cea5f2a1c4a2585d8b0cbb98402 to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/8dbe1cea5f2a1c4a2585d8b0cbb98402 to your computer and use it in GitHub Desktop.
웹접근성 숨김처리 영역 CSS
/* .tts 라고도 하고, .sr-only 라고도 하고, .blind 라고도 하는 웹접근성 관련 TTS 프로그램 인식 CSS 코드 */
.blind{
position: absolute;
border: 0;
clip: rect(0 0 0 0);
clip-path: inset(50%);
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment