<body>
<div id="wrap">
<header id="header"></header>
<main id="main">
<div class="lnb"></div>
<content id="content"></content>
<aside id="aside"></aside>
</main>
<footer id="footer"></footer>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
}
#wrap {
width: 100%;
}
#header {
height: 200px;
background-color: #FFCFB4;
}
#main {
display: flex;
}
.lnb {
width: 25%;
height: 600px;
background-color: #EEC28F;
}
#content {
width: 50%;
height: 600px;
background-color: #FFB054;
}
#aside {
width: 25%;
height: 600px;
background-color: #EDA046;
}
#footer {
height: 200px;
background-color: #FC9054;
}
/* 미디어쿼리 */
@media (max-width:1280px){}
@media (max-width:1024px){
#main {
flex-wrap: wrap;
}
.lnb {
width: 30%;
height: 400px;
}
#content {
width: 70%;
height: 400px;
}
#aside {
width: 100%;
height: 200px;
}
}
@media (max-width:768px){
.lnb {
width: 100%;
height: 200px;
}
#content {
width: 100%;
height: 200px;
}
}
</style>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.