묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
main 페이지 중앙에 오게하기
2005.05.16 05:20
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>무제</title>
</head>
<body bgcolor="#FFFFFF">
<table width="952" height="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td height="100%" colspan="3" valign="top"><? include("main/top.php"); ?></td>
</tr>
<tr><td width="202" height="100%" valign="top"><? include("main/left.php"); ?></td>
<td width="704" align="left" valign="top"><? include("main/center.php"); ?></td></tr></table>
<tr>
<td height="100%" valign="top"><? include("main/foot.php"); ?></td>
</tr>
</table>
위와 같은 소스를 만들었습니다(전 초보입니다)
위의 페이지가 현재는 왼쪽에 붙어있습니다.
이것을 중앙에 오게해서 해상도에따라 좌우 여백이 생기게 하려합니다.
어떻게 해야하나요?
테이블을 하나만들어서 좌,우는 100% 로 하고 중앙에는 인클루드로 위의 index를 넣어도 안되더라구요.
도와주세요.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>무제</title>
</head>
<body bgcolor="#FFFFFF">
<table width="952" height="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td height="100%" colspan="3" valign="top"><? include("main/top.php"); ?></td>
</tr>
<tr><td width="202" height="100%" valign="top"><? include("main/left.php"); ?></td>
<td width="704" align="left" valign="top"><? include("main/center.php"); ?></td></tr></table>
<tr>
<td height="100%" valign="top"><? include("main/foot.php"); ?></td>
</tr>
</table>
위와 같은 소스를 만들었습니다(전 초보입니다)
위의 페이지가 현재는 왼쪽에 붙어있습니다.
이것을 중앙에 오게해서 해상도에따라 좌우 여백이 생기게 하려합니다.
어떻게 해야하나요?
테이블을 하나만들어서 좌,우는 100% 로 하고 중앙에는 인클루드로 위의 index를 넣어도 안되더라구요.
도와주세요.
댓글 2
-
곽군
2005.05.16 12:10
-
눈물
2005.05.19 01:52
테이블 안에 테이블을 넣는 방법으로 할 수 있습니다.
위 소스의 <table>~</table>부분을
<table width="100%" align="center" valign="top" cellspacing="0" cellpadding="0">
<tr>
<td>~</td>
</tr>
</table>로 감싸주시면 됩니다.
<td>~</td>에서 ~부분에 질문에 들어가 있는 <table>~</table>까지의 부분을 넣어주시면 되구요...
<!--DWLayoutTable-->
----생략....