31 lines
470 B
PHP
31 lines
470 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
caption span {display:inline-block;width:1px;height:1px;overflow:hidden}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<table>
|
|
<caption><span>테스트용 테이블</span></caption>
|
|
<thead>
|
|
<tr>
|
|
<th>1st header</th>
|
|
<th>2nd header</th>
|
|
<th>3rd header</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>1</td>
|
|
<td>2</td>
|
|
<td>3</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
</body>
|
|
</html>
|