博客列表 >HTML5特性

HTML5特性

cxw的博客
cxw的博客原创
2019年12月02日 10:15:54844浏览

HTML5的特性以标签的形式存在

实例

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        header{
            width: 100%;
            height: 100%;
            background-color: yellow;
        }
        main {
            width: 80%;
            height: 100%;
            background-color: gray;
            }
        main>article {
            width: 80%;
            height: 100%;
            background-color: gray;
        }
        footer{
            width: 80%;
            height: 100%;
        }
    </style>
</head>
<body>
<header>头部</header>
<nav>导航</nav>
<main>
    <article>左边</article>
    <aside>右边</aside>
</main>
<footer>底部</footer>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

PS:以上标签都是块级标签

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议