본문 바로가기

공부!

html 테이블 만들기


<table border="2", summary="???">

<caption>제조사명 조회</caption>

<thead>

<tr>//가로 횡 행

<td>제품코드(4) 입력</td>//세로 종 열

</tr>

</thead>

<tbody>

<tr>

<td>제품코드</td>

<td><input type="text"></td>

</tr>

</tbody>

<tfoot>

<tr>

<td><button>확인</button></td>

</tr>

</tfoot>

</table>


이런식으로 테이블을 짬


<table border="2", summary="???">

<caption>제조사명 조회</caption>

<thead>

<tr>

<td colspan="2" style="text-align:center">제품코드(4) 입력</td>

</tr>

</thead>

<tbody>

<tr>

<td>제품코드</td>

<td><input type="text"></td>

</tr>

</tbody>

<tfoot>

<tr>

<td colspan="2" style="text-align:center"><button>확인</button></td>

</tr>

</tfoot>

</table>

로 수정함


'공부!' 카테고리의 다른 글