묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
한가지만더 질문할게요! 사이트 전반에 걸쳐 박스를 치는방법.
2015.12.22 21:03
http://www.dogdrip.net/
이 사이트 처럼 사이트 배경과 헤더,콘텐츠,푸터를 유리시켜서 박스치려면 어떻게 해야할까요? 고수분들의 조언 기다립니다....
<style>
.wrap{background:#f6f6f6}
.xe{width:1000px;margin:0 auto}
.header{background:red;height:100px;}
.body{background:yellow;height:500px;}
.footer{background:green;height:100px;}
</style>
<div class="wrap">
<div class="xe">
<div class="header">
</div>
<div class="body">
</div>
<div class="footer">
</div>
</div>
</div>