레이아웃 질문...
그림처럼 레이아웃을 만들려고 하는데 도무지 알수가없네요...
배경을 제외한 레이아웃은 가운데로 정렬하고싶어요
소스좀 부탁드려요...
배경을 제외한 레이아웃은 가운데로 정렬하고싶어요
소스좀 부탁드려요...
첨부파일
|
댓글을 작성하시려면 로그인이 필요합니다.
댓글 4개
[code]
<html>
<head>
<title> New Document </title>
<style type="text/css">
body{margin:0px; padding:0px; width:100%; height:100%; text-align:center; background:#08ffab;}
.wrap{width:700px; margin:0 auto; padding:85px 0px 85px 0px;}
.header{width:100%; height:85px; background:#ff0000;}
.contents{width:100%; height:520px; background:white;}
.footer{width:100%; height:85px; background:#085fff;}
</style>
</head>
<body>
<div class='wrap'>
<div class='header'>상단내용</div>
<div class='contents'>그누보드</div>
<div class='footer'>하단내용</div>
</div>
</body>
</html>
[/code]
그런데 가운데부분 그누보드는 어떻게 넣어야할까요... ㅜㅜ
[code]
body{margin:0px; padding:0px; width:100%; height:100%; text-align:center; background:#08ffab;}
.wrap{width:700px; margin:0 auto; padding:85px 0px 85px 0px;}
.header{width:100%; height:85px; background:#ff0000;}
.contents{width:100%; height:520px; background:white;}
.footer{width:100%; height:85px; background:#085fff;}
[/code]
head.php 에 삽입
[code]
<div class='wrap'>
<div class='header'>상단내용</div>
<div class='contents'>
[/code]
tail.php 에 삽입
[code]
</div>
</div>
[/code]
각 게시판 관리자에서는
상단파일 부분에 ../head.php
하단파일 부분에 ../tail.php
이렇게 넣어주시면 상단 하단 불러올거구요^^