Last active
February 2, 2023 00:05
-
-
Save dstyle0210/8dbe1cea5f2a1c4a2585d8b0cbb98402 to your computer and use it in GitHub Desktop.
웹접근성 숨김처리 영역 CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* .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