묻고답하기
테이블로 스킨을 만들었는데 공백이 생깁니다
2011.01.18 01:12
저렇게 한 줄 정도의 공간이 생겨버립니다.
제로보드 4에선 나타나지 않았던 증상입니다.
소스입니다. 소스엔 문제가 없는데 왜 저런 현상이 나타날까요.???
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>제목 없음</title>
<meta name="generator" content="Namo WebEditor v6.0">
</head>
<body bgcolor="white" text="black" link="blue" vlink="purple" alink="red">
<table cellpadding="0" cellspacing="0" width="1299">
<tr>
<td width="1299" colspan="7"> </td>
</tr>
<tr>
<td width="1299" height="100" colspan="7">
<p align="center"><img src="맨위에 들어가는 그림" border="0" align="bottom"></p>
</td>
</tr>
<tr>
<td width="205" height="91" rowspan="2">
<p align="right"> </p>
</td>
<td width="6" height="91" background="왼쪽사이드그림" rowspan="2"> <p align="right"> </p>
</td>
<td width="52" height="91" rowspan="2"> </td>
<td width="770" height="37"><span style="font-size:10pt;"><font face="돋움" color="#74889D"><img src="-"> 테두리안 하늘색글씨부분-</font></span></td>
<td width="53" height="91" rowspan="2"> </td>
<td width="9" height="91" background="오른쪽사이드그림" rowspan="2"> </td>
<td width="204" height="91" rowspan="2"> </td>
</tr>
<tr>
<td width="770" height="54"> {$content}</td>
</tr>
<tr>
<td width="1299" height="61" colspan="7">
<p align="center"><img src="하단부분그림" border="0" align="top"></p>
</td>
</tr>
</table>
<p> </p>
</body>
</html>
p 태그는 기본적인 상하 magin 값이 있습니다. margin 값을 0으로 설정 하시던지
아니면 div 나 span 태그로 교체 하세요. 위 경우 div가 p와 같은 block 속성이니
div 로 교체하시는게 좋겠네요
그리고 table 구조보다는 div구조가 권장됩니다만 ^^