-
표 만들기 table, tr, td, th, caption, thead, tbody, tfoot, rowspan, colspan, col, colgroup
표(table)은 행(row)과 열(column) 그리고 각각 셀(cell)로 이루어진다.
필요할 경우 표의 구조로 제목(thead), 본문(tbody), 요약(tfoot)을 지정 할 수 있다.<table> <tr> <td> 1행 1열 </td> <td> 1행 2열 </td> </tr> <tr> <td> 2행 1열 </td> <td> 2행 2열 </td> </tr> </table>
[1행 1열] [1행 2열] [2행 1열] [2행 2열] <table> <caption> 표 구성 예제 </caption> <thead> <th> head c0 </th> <th> head c1 </th> <th> head c2 </th> </thead> <tr> <th rowspan="2"> head r1 </th> <td> 1행 1열 </td> <td> 1행 2열 </td> </tr> <tr> <td> 2행 1열 </td> <td> 2행 2열 </td> </tr> </table>
표 구성 예제 head c0 head c1 head c2 head r1 1행 1열 1행 2열 2행 1열 2행 2열 행 열 묶기 <rowspan> <colspan>
열 묶기 <col>, <colgroup>
'Html Css JavaScript' 카테고리의 다른 글
사용자 입력 input - text, sumit, reset, image, password, search, url, email, tel, checkbox, radio, number, range, data, month, week, time, datatime, datetime-local (0) 2022.11.14 전송 form, fieldset, legend, label (0) 2022.11.14 히이퍼링크 a href (0) 2022.11.14 이미지, 오디오, 비디오 img, object, embed, audio, video (0) 2022.11.14 목록 ol li ul dl dt dd (0) 2022.11.14 텍스트를 기울임 em, i (0) 2022.11.14 텍스트를 굵게 strong, b (0) 2022.11.14 h1 에서 h6 (headering) (0) 2022.11.14