지원이 중단된 브라우저를 사용하고 있습니다.
브라우저 업그레이드를 통해 최적화된 화면을 볼 수 있습니다.

Home table
Post
Cancel

table

html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="c-table">
    <table>
        <caption><span class="sr-only">title</span></caption>
        <colgroup>
            <col style="width:20%">
            <col>
        </colgroup>
        <thead>
        <tr>
            <th scope="col">제목</th>
            <th scope="col">제목</th>
        </tr>
        </thead>
        <tbody>
        <tr>
            <th scope="row">제목</th>
            <td>내용</td>
        </tr>
        <tr>
            <th scope="row">제목</th>
            <td>내용</td>
        </tr>
        </tbody>
    </table>
</div>

참고

정렬 가능한 테이블의 경우에는 aria-sort="value" 처리 필요

This post is licensed under CC BY 4.0 by the author.