정의 및 사용
headers 를 지정 하나의 테이블 셀이 관련되어 더 머리글 셀 때문이다.
적용
headers 속성은 다음과 같은 요소에 사용할 수 있습니다 :
집단 | 속성 |
---|---|
<td> | headers |
<th> | headers |
예
Td 예
지정 <th> 각 요소 <td> 요소가 관련된다 :
<table>
<tr>
<th id="name">Name</th>
<th id="email">Email</th>
<th id="phone">Phone</th>
<th id="addr">Address</th>
</tr>
<tr>
<td headers="name">John Doe</td>
<td headers="email">[email protected]</td>
<td headers="phone">+45342323</td>
<td headers="addr">Rosevn 56,4300 Sandnes,Norway</td>
</tr>
</table>
»그것을 자신을 시도 Th 예
지정 <th> 각 헤더 셀에 관련 요소를 :
<table>
<tr>
<th id="name" colspan="2">Name</th>
</tr>
<tr>
<th headers="name">Firsname</th>
<th headers="name">Lastname</th>
</tr>
</table>
»그것을 자신을 시도 브라우저 지원
headers
각 요소에 대해 다음 브라우저 지원이 속성 :
요소 | |||||
---|---|---|---|---|---|
td | 예 | 예 | 예 | 예 | 예 |
th | 예 | 예 | 예 | 예 | 예 |