[html] 1 픽셀 테이블 만들기 -1
<html>
<head>
<title>필셀 1로 된 Table 맹그는 방법 2</title>
</head>
<body bgcolor=”#C8C8B8″>
<!— cellpadding 과 cellspacing을 가지고 만드는 방법이다.
table의 bgcolor는 테두리에 보여지는 라인색에 영향을 미치게 된다.
td 안의 bgcolor는 내용이 들어 가는 백그라운드에 영향을 미치게 된다.
—>
<table bgcolor=”#000000″ border=”0″ cellpadding=”2″ cellspacing=”1″ width=”300″>
<tr>
<td bgcolor=”eeeee9″ width=”100″> </td>
<td bgcolor=”eeeee1″ width=”100″> </td>
<td bgcolor=”eeeeee” width=”100″> </td>
</tr>
<tr>
<td bgcolor=”red” width=”100″> </td>
<td bgcolor=”pink” width=”100″> </td>
<td bgcolor=”blue” width=”100″> </td>
</tr>
</table>
</body>
</html>
japanese mix