简单布局

简单布局

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>

    <style>
        header,main,footer{
            width:600px;
            margin: 0px auto;
        }

        header{
            background-color: aqua;
            height: 50px;

        }

        main{
            height: 400px;
            background-color: yellow;
        }

        .nav,.content,.aside{
             float: left;
            height: 100%;
          
        }

        .nav{
           
            width:100px;
            background-color: red;
        }

        .content{
            width:380px;
            background-color: violet;
            margin: 0px 10px;
        }

        .aside{
            width: 100px;
            background-color: red;
        }

        footer{
            height: 50px;
            background-color: aqua;
        }
    </style>
</head>
<body>
    <!-- 网页的头部 -->
    <header>
        
    </header>
    
    <!-- 网页的主体 -->
    <main>
        <div class="nav"></div>
        <div class="content"></div>
        <div class="aside"></div>
    </main>

    <!-- 网页的底部 -->
    <footer></footer>
</body>
</html>

posted @ 2022-04-23 08:40  Eveeee  阅读(25)  评论(0)    收藏  举报