<!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></title>
<style>
* {
margin: 0;
padding: 0;
}
a {
color: black;
text-decoration: none;
}
li {
list-style: none;
}
/*-------- header, footer --------*/
.header,
.footer {
width: 1024;
height: 200px;
background-color: #ccc;
text-align: center;
line-height: 200px;
margin: 0 auto;
}
/*-------- contents --------*/
.wrap {
width: 1024px;
overflow: hidden;
margin: 24px auto;
}
/*-------- contents --------*/
.contents {
width: 700px;
height: 500px;
border: 1px solid black;
box-sizing: border-box;
float: left;
/* margin-right: 24px; */
}
/*-------- aside --------*/
.aside {
width: calc(1024px - 700px - 24px);
height: 500px;
border: 1px solid black;
box-sizing: border-box;
/* float: left; */
float: right;
}
</style>
</head>
<body>
<header class="header">
<h1>header</h1>
</header>
<div class="wrap">
<div class="contents">
<h1>contents</h1>
</div>
<aside class="aside">
<h2>aside</h2>
</aside>
</div>
<!--wrap-->
<footer class="footer">
<h1>footer</h1>
</footer>
</body>
</html>