728x90
1. 테이블의 구성요소.
- 각각의 칸을 셀이라고 부름.
- 가로방향을 행 또는 row, 세로방향을 열 또는 column
2. 테이블을 나타내는 태그
- <td>, <th>: 셀을 표현해주는 태그 / <th>태그는
제목 셀을 나타낼때 사용.
- <tr>: 셀들을 감싸주는 행 (table-row)
- <table>: 위 태그들을 전부 감싸주는 태그
3. 테이블 구조 관련 태그
- <caption>: 표의 제목/ <table> 태그의 자식태그로서 가장 위에 선언
- <thread>: 제목 행을 그룹
- <tfoot>: 바닥 행을 그룹
- <tbody>: 본문 행을 그룹
4. 테이블 관련 속성
- colspan: 셀을 가로방향으로 병합
- rowspan: 셀을 세로방향으로 병합
*테이블에 대해서 더 자세히 알고싶다면 : https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
: The Table element
The HTML table element represents tabular data — that is, information presented in a two-dimensional table comprised of rows and columns of cells containing data.
developer.mozilla.org