영어 [fʊt]

n.발; 발(=12인치 또는 30.48cm); 걸음걸이, 걸음

vt.& vi. 사람 단수: foots 복수: foot 현재 분사: footing 과거 시제: footed 과거 분사: footed

html tfoot 태그 통사론

기능: 테이블의 바닥글(각주 또는 테이블 노트)을 정의합니다. 이 태그는 HTML 테이블의 테이블 주석 내용을 결합하는 데 사용됩니다.

참고: tfoot 요소는 thead 및 tbody 요소와 함께 사용해야 합니다. Thead 요소는 HTML 테이블의 헤더 콘텐츠를 그룹화하는 데 사용되는 반면, tbody 요소는 HTML 테이블의 본문 콘텐츠를 그룹화하는 데 사용됩니다.

참고: thead, tfoot 및 tbody 요소를 사용하는 경우 해당 요소를 모두 사용해야 합니다. thead, tfoot, tbody 순서로 나타나므로 브라우저는 모든 데이터를 받기 전에 바닥글을 렌더링할 수 있습니다. 테이블 요소 내에서 이러한 태그를 사용해야 합니다.

html tfoot 태그 예

<html>
<head>
<style type="text/css">
thead {color:green}
tbody {color:blue;height:50px}
tfoot {color:red}
</style>
</head>
<body>

<table border="1">
  <thead>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>January</td>
      <td>0</td>
    </tr>
    <tr>
      <td>February</td>
      <td></td>
    </tr>
  </tbody>
  <tfoot>
    <tr>
      <td>Sum</td>
      <td>0</td>
    </tr>
  </tfoot>
</table>

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요