CSS之盒子上下布局

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>盒子上下布局案例</title>
    <style>
        .top,
        .banner,
        .main,
        .footer{
            width: 900px;
            background-color: #eeeeee;
            border: 1px dashed #cccccc;
            margin: auto;
        }
        .top{
            height: 80px;
        }
        .banner{
            height: 120px;
            margin: 5px auto 0;
        }
        .main{
            height: 500px;
            margin: 5px auto;
        }
        .footer{
            height: 100px;
        }

    </style>
</head>
<body>
<div class="top">top</div>
<div class="banner">banner</div>
<div class="main">main</div>
<div class="footer">footer</div>
</body>
</html>
posted @ 2019-04-06 09:13  showTimehzy  阅读(1482)  评论(0编辑  收藏  举报