본문 바로가기
HTML

[HTML] 표 table - tr td th 등

2024. 7. 1.

<table>

</table>

표 안에 또 표를 넣는 것도 가능.

 

<tr> table row

<td> table data   : 요것이 실제로 내용이 들어가는 한 칸을 담당한다.

 

<table>
  <tr>  먼저 행 제목을 적어준다.
    <td>Emil</td>  
    <td>Tobias</td>
    <td>Linus</td>
  </tr>
  <tr> 그 다음엔 그 다음줄 내용.
    <td>16</td>
    <td>14</td>
    <td>10</td>
  </tr>
</table>

 

HTML Table Tags

<table> Defines a table
<th> Defines a header cell in a table
<tr> Defines a row in a table
<td> Defines a cell in a table
<caption> Defines a table caption
<colgroup> Specifies a group of one or more columns in a table for formatting
<col> Specifies column properties for each column within a <colgroup> element
<thead> Groups the header content in a table
<tbody> Groups the body content in a table
<tfoot> Groups the footer content in a table

 

 

결과

 

 

 

댓글