0506 HTML
셀 합침
table : 표만들기
tr : 행(row)
td : 열(column)
th : 제목셀(굵은글씨)
속성 border는 테두리선의 굵기
<table border="1"> <caption>표의 제목</caption> <tr> <th>1행 1열</th> <th>1행 2열</th> <th>1행 3열</th> </tr> <tr> <td>2행 1열</td> <td>2행 2열</td> <td>2행 3열</td> </tr> <tr> <td>3행 1열</td> <td>3행 2열</td> <td>3행 3열</td> </tr> </table>
<table border="1"> <caption>셀 합침</caption> <tr> <th colspan="2">1행 12열</th>
colspan속성: 셀의 열 합침(가로), colspan = "숫자값"(셀의갯수)
<th>1행 3열</th> </tr> <tr> <td>2행 1열</td> <td rowspan="2">23행 2열</td>
rowspan속성: 셀의 행 합침(가로), rowspan = "숫자값"(셀의갯수)
<td>2행 3열</td> </tr> <tr> <td>3행 1열</td> <td>3행 3열</td> </tr> </table>
Author And Source
이 문제에 관하여(0506 HTML), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@popoiing/행렬-셀-합침저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)