HTML5的新增标签

来源:互联网 发布:app开发制作软件 编辑:程序博客网 时间:2024/05/16 05:37
<!DOCTYPE html><html><head>    <meta charset="UTF-8" />    <title>Document</title>    <style type="text/css">        header,nav{            width: 800px;            height: 60px;            border: 1px solid #ccc;            margin:0 auto;        }               nav{            margin-top:10px;        }        section{            width: 800px;            height: 500px;            margin:20px auto;        }        aside{            width: 290px;            height: 500px;            border: 1px solid #ccc;            float: left;        }        article{            width: 500px;            height: 500px;            border: 1px solid #ccc;            float: right;        }        footer{            width: 800px;            height: 50px;            border: 1px solid #ccc;            margin:10px auto;        }    </style></head><body>    <header>头部</header>    <nav>导航</nav>    <section>        <aside>侧边栏</aside>        <article>文章</article>    </section>    <footer>底部</footer></body></html>

0 0
原创粉丝点击