美文网首页
header-aside-content布局-手写css

header-aside-content布局-手写css

作者: 晔子与Bug的战斗史 | 来源:发表于2017-10-06 14:43 被阅读0次
<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
    <style>
      .top{
          width:100%;
            height:60px;
            background-color: #ccc;
        }
        .left,.right{
          min-height:600px;
        }
        .left{
          float:left;
            width:200px;
            background-color: #ddd;
        }
        .right{
          margin-left: 200px;
            background-color: #aaa;
        }
    </style>
</head>
<body>
<div class="top">top</div>
<div class="left">left</div>
<div class="right">right</div>
</body>
</html>

![image.png](https://img.haomeiwen.com/i6548635/a0fb57b3714eba7b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

相关文章

网友评论

      本文标题:header-aside-content布局-手写css

      本文链接:https://www.haomeiwen.com/subject/zxzlyxtx.html