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"
처리 필요