We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
본 repo에서는 Font Awesome이 기본적으로 aria-hidden="true"로 설정되어 있으며 이를 버튼에 사용하고 있으나, 화면 좌측의 사이드바의 버튼과 화면 상단의 실행 제어 버튼에는 버튼이 무슨 동작을 하는지에 대한 정보가 없습니다. 이 정보가 없는 경우,
aria-hidden="true"
Font Awesome에서도 아이콘이 단순 꾸미기 용도가 아니라 의미를 가지고 있거나 사용자와 상호작용하는 경우 아이콘이 나타내는 뜻을 적는 것을 권장하고 있습니다. 제가 제안드리는 해결책은 다음과 같습니다:
div
aria-label
title
button
The text was updated successfully, but these errors were encountered:
No branches or pull requests
본 repo에서는 Font Awesome이 기본적으로
aria-hidden="true"
로 설정되어 있으며 이를 버튼에 사용하고 있으나, 화면 좌측의 사이드바의 버튼과 화면 상단의 실행 제어 버튼에는 버튼이 무슨 동작을 하는지에 대한 정보가 없습니다. 이 정보가 없는 경우,Font Awesome에서도 아이콘이 단순 꾸미기 용도가 아니라 의미를 가지고 있거나 사용자와 상호작용하는 경우 아이콘이 나타내는 뜻을 적는 것을 권장하고 있습니다. 제가 제안드리는 해결책은 다음과 같습니다:
div
에aria-label
또는 아이콘에title
속성을 달아 버튼 설명을 추가합니다. 버튼div
안쪽에 텍스트 노드를 달아 버튼 설명을 달고 CSS로 치우는 것도 좋습니다. 툴팁이 필요하면 별도로 처리합니다.div
대신button
태그를 이용하고,button
태그에title
를 답니다.The text was updated successfully, but these errors were encountered: