:focus 탭키로 이동시...
반율하
2023.04.01
The :focus selector is used to select the element that has focus.
Tip:The :focus selector is allowed on elements that accept keyboard events or other user inputs.
-
뭐래요? .......-
a나button 외의 요소에 :focus 를적용하면 탭 키로 이동시 노출이 안되는데 노출되도록 할 수 있는 방법을 아시나요?
-
유우
a태그나 button 태그 이외의 요소에 포커스를 주고 싶다면 tabindex=\0\ 속성을 넣어주시면 됩니다.
div tabindex=\0\내용/div 이런식으로 넣어주면 내용 부분을 포커싱 되게 가능합니다.