The basic layout of the web page

insert image description here

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

        /* 【设置头部】  */
        header {
      
      
            height: 150px;
            background-color: silver;
        }

        /* 【设置主体】 */
        main {
      
      
            height: 500px;
            background-color: #bfa;
            margin: 10px auto;
        }

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

        /* 【设置左侧导航】 */
        nav {
      
      
            width: 200px;
            background-color: yellow;
        }

        /* 【设置中间内容】 */
        article {
      
      
            width: 580px;
            background-color: orange;
            margin: 0 10px;
        }

        /* 【设置右侧内容】  */
        aside {
      
      
            width: 200px;
            background-color: pink;
        }

        /* 【设置底部】  */
        footer {
      
      
            height: 150px;
            background-color: red;
        }
    </style>
</head>
<body>

<header>【创建头部】</header>

<main>
    【创建网页的主体】

    <nav>【左侧导航】</nav>
    <article>【中间的内容】</article>
    <aside> 【右边的边栏】</aside>
</main>

<footer>【网页的底部】</footer>

</body>
</html>

Guess you like

Origin blog.csdn.net/weiguang102/article/details/123869172