HTML 태그 - col
본문
HTML 태그 - col
<col>태그는 표에서 열을 정의할 때 사용합니다. 같은 열의 칸에 동일한 의미를 정의합니다.
속성
표속성은 대부분 CSS로 표현해야 합니다.
샘플
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="author" content="코리아뉴스" />
<title> html공부 </title>
<link rel="stylesheet" type="text/css" href="default.css" / >
<style type="text/css">
body {
color:red;
}
</style>
</head>
<body>
<section>
<h1>col태그</h1>
<table>
<caption>caption</caption>
<colgroup>
<col >
<col >
</colgroup>
<thead>
<tr>
<th>header #1</th>
<th>header #2</th>
</tr>
</thead>
<tfoot>
<tr>
<td>footer #1</td>
<td>footer #2</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>body #1</td>
<td>body #2</td>
</tr>
</tbody>
</table>
</section>
<div id="related">
<p>영역 </p>
</div>
<footer>
<address> 전화 : 031-574-3659, E-mail : master@koreanews.com </address>
Copyright ⓒ 2013 Koreanews co., All Rights Reserved.
</footer>
</body>
</html>
- 이전글HTML 태그 - colgroup 14.12.11
- 다음글HTML 태그 - code 14.12.11