<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>layout</title>
<style>
* {margin: 0; padding: 0;}
a {color: black; text-decoration: none;}
li {list-style: none;}
/*-------- header --------*/
.header {
width: 1024px; height: 200px;
background-color: #ccc;
margin: 0 auto;
}
/*-------- wrap --------*/
.wrap {
width: 1024px;
margin: 0 auto;
/* wrap으로 묶어서 대표로 가운데 정렬함. */
}
.wrap .visual_main {
height: 300px;
/* 홈페이지는 width 일정하게 설정함.
부모가 width: 1024px이므로 자식은 100%임. 100%는 생략가능. */
background-color: #aaa;
}
.wrap .event {
height: 200px;
background-color: #bbb;
margin: 50px 0;
}
.wrap .product {
height: 400px;
background-color: #ddd;
}
/*-------- footer --------*/
.footer {
width: 1024px; height: 200px;
background-color: #ccc;
margin: 0 auto;
}
</style>
</head>
<body>
<header class="header">
<h1>header</h1>
</header><!--header-->
<div class="wrap">
<section class="visual_main">
visual_main
</section>
<section class="event">
event
</section>
<section class="product">
product
</section>
</div><!--wrap-->
<footer class="footer">
<h1>footer</h1>
</footer><!--footer-->
</body>
</html>