묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
테이블 정렬이 잘 안먹혀요..(초보)
2003.01.18 23:40
<body>
<table border="0" cellpadding="0" cellspacing="0" width="640" height="480" align="center" valign="middle">
<tr>
<td width="640" height="100" colspan="2"><iframe src="top.html" width="640" height="100"></td>
</tr>
<tr>
<td width="130" height="380"><iframe src="left.html" width="130" height="380"></td>
<td width="510" height="380"><iframe src="right.html" width="510" height="380"></td>
</tr>
</table>
</body>
이렇게 코딩(..)했거든요...
그런데 가로정렬은 되는데 세로정렬이 안되고 위쪽에 붙어있네요...
어디가 틀린부분인지 지적해주세요..(흑흑)
<table border="0" cellpadding="0" cellspacing="0" width="640" height="480" align="center" valign="middle">
<tr>
<td width="640" height="100" colspan="2"><iframe src="top.html" width="640" height="100"></td>
</tr>
<tr>
<td width="130" height="380"><iframe src="left.html" width="130" height="380"></td>
<td width="510" height="380"><iframe src="right.html" width="510" height="380"></td>
</tr>
</table>
</body>
이렇게 코딩(..)했거든요...
그런데 가로정렬은 되는데 세로정렬이 안되고 위쪽에 붙어있네요...
어디가 틀린부분인지 지적해주세요..(흑흑)
위의 <table></table> 태그를 다시한번 <table></table>태그로 감싸주면 될듯싶습니다.
즉 아래와 같이 해보세요..
<body>
<table height="100%" align="center" valign="middle"><tr><td>
<table border="0" cellpadding="0" cellspacing="0" width="640" height="480" align="center" valign="middle">
<tr>
<td width="640" height="100" colspan="2"><iframe src="top.html" width="640" height="100"></td>
</tr>
<tr>
<td width="130" height="380"><iframe src="left.html" width="130" height="380"></td>
<td width="510" height="380"><iframe src="right.html" width="510" height="380"></td>
</tr>
</table>
</td></tr></table>
</body>