一个html页面布局的问题
刚开始学习这个 布局什么的完全不会啊 时间比较紧 希望可以得到帮助 谢谢大家
<!doctype html>
<meta charset="utf-8" />
<style>
body{background:#e4de82}
.wrap{max-width:680px;margin:0 auto;background:#fff;padding:10px}
.header,.footer{height:100px;background:#a09483}
.body{height:400px;margin:5px 0;display:flex}
.body .aside{float:left;width:20%;background-color:pink;border-right:solid 5px #fff}
.body .content{background:#9a97ce;width:80%;}
.footer{margin:0}
</style>
<div class="wrap">
<div class="header"></div>
<div class="body">
<div class="aside"></div>
<div class="content"></div>
</div>
<div class="header"></div>
</div>
菜鸟教程的html那个简单易懂,你可以去看一下,自己需要那些知识点
盒子模型,全是盒子,盒子套盒子,自己理解