여백채우기 > 그누4 질문답변

그누4 질문답변

그누보드4 관련 질문은 QA 로 이전됩니다. QA 그누보드4 바로가기
기존 게시물은 열람만 가능합니다.

여백채우기 정보

여백채우기

본문

<table align="center" width="1024" border="0" cellspacing="0" cellpadding="0">
<tr>
<td colspan="3" height="126"><a href="index.html"><img src="./images/index_01.gif" border="0">&nbsp;</a></td>
</tr>
<tr>
        <td colspan="3" height="63" width="1000"><? include_once("$g4[path]/xtx_topmenu.php"); ?>&nbsp;<td>
    </tr>
  <tr>
<td height="150" valign="top" <?=outlogin("basic");?>&nbsp;</td>
<td widh="530" height="248"><img src="./images/6666.gif" border="0">&nbsp;</td>
<td width="270"  valign="top" <* p style="padding-right:35px"><p><?=latest("basic3", "rhdwl", 6, 55)?></p></td>

</tr>
<tr>

<td width="20"  <* p style="padding-bottom:100px" ><?=poll("basic"); // 설문조사?> &nbsp;</td>

</tr>
</table>



</body>
</html>


사진을 보시면 로그인하고 투표가 떨어져있는데 그 위로올라가지를못하겠어요

<* p style="padding-bottom:100px" > bottom이 하단과의 여백이죠? 저걸 높히면 그냥
스크롤바만 높아질뿐이네요

방법이없을까요?
  • 복사

댓글 전체

당연한 결과네요.
<tr>,,,,,,,,,,,,,,</tr> 이것을 한 행으로 보면 됩니다.
그런데 image6666이 248로 높이가 설정되어 있으니 이 행은 모두 248로 잡히게 되지요.
다음과 같은 형식으로 해 주셔야 합니다.

<tr>
<td valign="top">
<table width="100%">
<tr><td><?=outlogin("basic");?></td></tr>
<tr><td><?=poll("basic"); // 설문조사?> </td></tr>
</table></td>
<td widh="530" height="248"><img src="./images/6666.gif" border="0">&nbsp;</td>
<td width="270"  valign="top" <* p style="padding-right:35px"><p><?=latest("basic3", "rhdwl", 6, 55)?></p></td>
</tr>

아니면 다음과 같은 형식으로 하셔도 됩니다.

<tr>
<td valign="top"><?=outlogin("basic");?><br /><?=poll("basic"); // 설문조사?></td>
<td widh="530" height="248"><img src="./images/6666.gif" border="0">&nbsp;</td>
<td width="270"  valign="top" <* p style="padding-right:35px"><p><?=latest("basic3", "rhdwl", 6, 55)?></p></td>
</tr>
© SIRSOFT
현재 페이지 제일 처음으로