html5新增语义化标签

2018-04-20  本文已影响0人  琪33
<style>
        header {
            width:1000px;
            height: 100px;
            background-color: pink;
            margin: 0 auto;
        }
        nav {
            width:1000px;
            height: 60px;
            background-color: blue;
            margin: 0 auto;
        }
        section {
            width: 1000px;
            height: 400px;
            background-color:#eee;
            margin: 0 auto;
        }
        section aside {
            float: left;
            width: 400px;
            height: 400px;
            background-color:red;
        }
        section article {
            float: right;
            width: 600px;
            height: 400px;
            background-color:green;
        }
        footer {
            width: 1000px;
            height: 100px;
            background-color:#333;
            margin: 0 auto;
        }
    </style>
</head>
<body>
    <header>header</header>
    <nav>nav</nav>
    <section>
        <aside>aside</aside>
        <article>article</article>
    </section>
    <footer>footer</footer>
</body>
上一篇 下一篇

猜你喜欢

热点阅读