<div></div>
<section></section>
<nav></nav>
div{
background : red;
width : 100%;
height : 80px
}
section{
background : blue;
width : 50%;
height : 80px;
}
nav{
background : green;
width : 600px;
height : 160px;
}
<div></div>
<section></section>
<nav></nav>
div {
background-color:red;
height:50px;
}
section {
background-color:blue;
height:50px;
width:50%;
}
nav {
background-color:green;
height:100px;
width:800px;
}
px : 딱 고정됨
% : 화면의 비율에 맞게 유지하려고 한다.