页面结构

Posted 米小玉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了页面结构相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>页面结构</title>
    <style>
        header, nav, article, footer{
            border: solid 1px #666;
            padding: 5px;
        }
        header{
            width: 500px;
        }
        nav{
            float: left;
            width: 60px;
            height: 100px;
        }
        article{
            float: left;
            width: 428px;
            height: 100px;
        }
        footer{
            clear: both;
            width: 500px;
        }
    </style>
</head>
<body>
    <header>
        头部部分
    </header>
    <nav>
        菜单导航部分
    </nav>
    <article>
        内容部分
    </article>
    <footer>
        底部部分
    </footer>
</body>
</html>

 

以上是关于页面结构的主要内容,如果未能解决你的问题,请参考以下文章