웹 접근성을 고려하여 table에서 caption요소를 사용합니다.
보통 제목을 h태그로 달아주고 caption요소는 css 로 숨겨주는데,
display:none 요소로 숨길 경우 스크린리더기에서 읽지못하기때문에,
아래소스처럼 처리해줍니다.
table caption {
position: absolute;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
'웹디자이너 > css' 카테고리의 다른 글
html/css 박스스타일 - 둥근모서리/그림자/컬러 넣는 방법 (0) | 2021.06.18 |
---|---|
css 보더(border)속성 - 박스 테두리 라인 스타일 9가지 (0) | 2021.06.16 |
html/css 긴 글 작성 시 줄인말 "..." - text-overflow:ellipsis (0) | 2021.06.11 |
댓글