묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
노프레임에서 문서를 상하 배열이 아닌 좌우배열 방법 좀....
2002.04.19 12:03
안녕하세요. 여러분..
아래와 같이.. 문서를 상하로 배열하는 건 알겠는데,, 좌우 배열은 어떻게 하죠?
아래 문서는 상하 배열..
<html>
<head>
<title>( :+~:+~ 노래로 크는 나무 ~+:~+: )</title>
</head>
<body>
<?php
$p=$p ? $p : "home";
require("head.html");
require("$p.html");
require("foot.html");
?>
</body>
</html>
맨위 문서가 head 중간 home 맨마지막 foot 이잖아요.
근데, 여기 home문서에 좌우 도 넣고 싶어서요. 프레임으로 넣을 수 있겠지만,,
php로 넣구 싶어서요. 좌우 넣는 방법 좀 알려 주세요.
걍 말로 해 주시지 말고, 위에 처럼.... 올려 주세요.
제가 분석해서 알아볼께요. 부탁드립니다.
좋은 하루되세요
아래와 같이.. 문서를 상하로 배열하는 건 알겠는데,, 좌우 배열은 어떻게 하죠?
아래 문서는 상하 배열..
<html>
<head>
<title>( :+~:+~ 노래로 크는 나무 ~+:~+: )</title>
</head>
<body>
<?php
$p=$p ? $p : "home";
require("head.html");
require("$p.html");
require("foot.html");
?>
</body>
</html>
맨위 문서가 head 중간 home 맨마지막 foot 이잖아요.
근데, 여기 home문서에 좌우 도 넣고 싶어서요. 프레임으로 넣을 수 있겠지만,,
php로 넣구 싶어서요. 좌우 넣는 방법 좀 알려 주세요.
걍 말로 해 주시지 말고, 위에 처럼.... 올려 주세요.
제가 분석해서 알아볼께요. 부탁드립니다.
좋은 하루되세요
댓글 2
-
Legend
2002.04.19 15:57
-
여비
2002.04.19 21:05
레전드 님의 말씀이 맞습니다.
<td>에 valign="top" 을 주시면 윗상단에 맞게 정렬될껍니다.
<table>
<tr>
<td valign="top"><?require("head.html");?></td>
<td valign="top"><?require("$p.html");?></td>
<td valign="top"><?require("foot.html");?></td>
</tr>
</table>
나머지 마진이나 보더는 님께서 알아서 하시면 됩니다.
태그에 대해 모르시겠으면 저에게 쪽지 날려주세요.
<table><tr><td><?require("head.html");?></td><td><?require("$p.html");?></td><td><?require("foot.html");?></td></tr></table>