버튼 안에 버튼 넣지 않기 | A11y Fundamentals #326
Replies: 1 comment 1 reply
-
아래 예시에서 이러한 경우에, 유지보수시에 관리포인트가 2곳이 되어 의도치 않은 side effect가 발생하지는 않을까요? 다른 분들의 의견이 궁금합니다...!!! <div
style="position: relative; isolation: isolate;"
className="wrapper"
role="listitem"
aria-label="서비스 검토 관리"
>
<button
className="detail-button"
style="position: absolute; inset: 0; opacity: 0"
>
상세보기
</button>
서비스 검토 관리
<div style="position: relative; z-index: 2;">
<button aria-label="삭제">x</button>
</div>
</div> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
버튼 안에 버튼 넣지 않기 | A11y Fundamentals
프론트엔드 접근성의 모든 것
https://frontend-fundamentals.com/a11y/structure/button-inside-button.html
Beta Was this translation helpful? Give feedback.
All reactions