axianz
<!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>

分类:

技术点:

相关文章:

  • 2022-01-08
  • 2021-07-23
  • 2021-12-24
  • 2021-04-09
  • 2021-06-09
  • 2022-12-23
猜你喜欢
  • 2021-09-08
  • 2020-06-29
  • 2021-06-16
  • 2021-08-19
  • 2021-06-20
  • 2021-08-20
  • 2022-12-23
相关资源
相似解决方案