[웹접근성] 명료성에 대해서 (명도차, 무늬 활용)
·
Frontend/웹접근성
색맹, 색약, 저시력 등의 시각장애가 있는 사용자를 위한 웹 접근성 향상 1. 색에 의한 정보 표현 방지색맹인 사람들은 어떤게 Dataset1 인지 어떤게 Dataset2 인지 모를 수 있다. 무늬를 이용해서 정보를 제공할 수 있다. 📌 Chart.js 에 패턴 적용 Colors | Chart.jsColors Charts support three color options: for geometric elements, you can change background and border colors; for textual elements, you can change the font color. Also, you can change the whole canvas background. Default colors ..
[웹접근성] 목록 나열 태그 (ul, ol, dl)
·
Frontend/웹접근성
목록나열 태그에 대해서 알아보자 ul (Unordered List)순서가 지정되지 않은 목록 나열할 때 사용 React CRA VITE Next.js TypeScript✅ 예시 React CRA VITE Next.js TypeScript">ReactCRAVITENext.jsTypeScript ✅ 설명ul 바로 하위 자식 요소는 li 태그만 사용가능기본 글머리 기호는 disc (list-style-type: disc)ol (Ordered List)순서가 지정된 목록 나열할 때 사용 React CRA VITE Next.js TypeScript✅ 예시 Reac..