제목 : 활용예제 : 1픽셀짜리 깔끔한 테이블 만들기
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<style type="text/css">
.tbl_collapse
{
border-collapse: collapse; /* 테두리를 합친다 */
margin-top: 2px;
width: 100%;
border: solid 1px #D7D7D7;
}
.tbl_collapse th
{
background-color: #EFEFEF;
height: 22px;
border: solid 1px #D7D7D7;
font-weight: 200;
text-align: center;
}
.tbl_collapse td
{
height: 25px;
border: solid 1px #D7D7D7;
text-align: center;
}
</style>
</head>
<body>
<h3>
활용예제 : 1픽셀짜리 깔끔한 테이블 만들기</h3>
<table class="tbl_collapse">
<colgroup>
<col width="20%" />
<col width="80%" />
</colgroup>
<tr>
<th>
제목1
</th>
<td>
내용1
</td>
</tr>
<tr>
<th>
제목2
</th>
<td>
내용2
</td>
</tr>
</table>
</body>
</html>