728x90
<Table> : ํ ์ด๋ธ
<th> : ํ ์ด๋ธ ํค๋
<tr> : ํ ์ด๋ธ row
<td> : ํ ์ด๋ธ data
colspan : ์ปฌ๋ผ ๋ณํฉ
rowspan : ๋ก์ฐ(์ด) ๋ณํฉ
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
<!-- Table : row(ํ), column(์ด) -->
<!-- <table border="1" style="width : 50%"> ์น ํ๋ฉดํญ์ 50% -->
<div align="center">
<table border="2">
<col width="50"><col width="100"><col width="200"><col width="50"> <!-- ์ปฌ๋ผ ๋๋น -->
<tr>
<th>๋ฒํธ</th>
<th>์ฑ</th>
<th>์ด๋ฆ</th>
<th>๋์ด</th>
</tr>
<tr>
<th>1</th>
<td>ํ</td>
<td>๊ธธ๋</td>
<td align="center">20</td>
</tr>
<tr>
<th>2</th>
<td>์ฑ</td>
<td>์ถํฅ</td>
<td align="center">21</td>
</tr>
</table>
</div>
<br><br>
<!-- column ๋ณํฉ (colspan) -->
<table border="1" style="width:50%">
<caption>์ฃผ์๋ก</caption>
<tr>
<th>๋ฒํธ</th><th>์ด๋ฆ</th><th>๋์ด</th><th colspan="2">์ ํ๋ฒํธ</th>
</tr>
<tr>
<td>1</td><td>ํ๊ธธ๋</td><td>24</td><td>123-4567</td><td>2345-5678</td>
</tr>
</table>
<br>
<!-- row ๋ณํฉ (rowspan) -->
<table border="1">
<caption>์ฃผ์๋ก</caption>
<tr>
<th>๋ฒํธ</th>
<td>1</td>
</tr>
<tr>
<th>์ด๋ฆ</th>
<td>๊ธธ๋</td>
</tr>
<tr>
<th>๋์ด</th>
<td>24</td>
</tr>
<tr>
<th rowspan="2">์ ํ๋ฒํธ</th>
<td>123-4567</td>
</tr>
<tr>
<td>234-5678</td>
</tr>
</table>
</body>
</html>
๊ฒฐ๊ณผ๋ฌผ -
'๐ HTML\CSS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
์ค๋ฌธ์กฐ์ฌ ์์ - form์ด์ฉ, jsp (0) | 2021.02.24 |
---|---|
html์ Action๊ณผ JSP๋ฅผ ํ์ฉํด ์ ๋ ฅ๋ฐ์๊ฐ ๋๊ฒจ์ฃผ๋๋ฒ (0) | 2021.02.24 |
iframe (web ์์ web) (0) | 2021.02.24 |
List (๋ชฉ๋ก) - ul , ol ํ์ฉ๋ฒ (0) | 2021.02.24 |
๐ ํ ์ฌ๋ผ ํํ์ด์ง ๋ง๋ค๊ธฐ 1๏ธโฃ (0) | 2021.02.23 |
๋๊ธ