web-crash-course


Tables / 테이블

<!-- prettier-ignore -->
<table
  width="400"
  cellpadding="10"
  cellspacing="5"
  border="2"
  bgcolor="#efefef"
>
  <thead>
    <tr>
      <th>Header 1 / 헤더 1</th>
      <th>Header 2 / 헤더 2</th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td colspan="2">Cell 1 / 셀 1 (열 병합)</td>
    </tr>
    <tr>
      <td rowspan="2">Cell 1 / 셀 1 (행 병합)</td>
      <td>Cell 2 / 셀 2</td>
    </tr>
    <tr>
      <td>Cell 2 / 셀 2</td>
    </tr>
  </tbody>
  
  <tfoot>
    <tr>
      <td>Footer 1 / 푸터 1</td>
      <td>Footer 2 / 푸터 2</td>
    </tr>
  </tfoot>
</table>
<caption>
  Caption / 캡션
</caption>