[스크랩] 8. (2) Cellpadding과 Cellspacing(tag)
<html>
<head>
<title> cellpadding과cellspacing 여백 예문</title>
</head>
<body>
<center>
<h3> cellpadding=30 cellspacing=10 border=10 bordercolor=peru 이미지와 셀에 여백 지정</h3>
<table cellpadding=30 cellspacing=10 border=10 bordercolor=peru>
<tr>
<td> <img src=https://t1.daumcdn.net/cafefile/pds91/9_cafe_2008_09_14_11_08_48cc720653980 width=400 height=300> </td>
</tr>
</table>
<br>
<h3> cellpadding=10 cellspacing=30 border=5 bordcolor=teal 셀과 셀 사이의 여백 지정</h3>
<table cellpadding=10 cellspacing=30 border=5 bordercolor=teal>
<tr>
<td> <img src=https://t1.daumcdn.net/cafefile/pds91/9_cafe_2008_09_14_11_08_48cc720653980 width=400 height=300> </td>
<td> <img src=https://t1.daumcdn.net/cafefile/pds91/9_cafe_2008_09_14_11_08_48cc720653980 width=400 height=300> </td>
</tr>
</table>
</center>
</body>
</html>