html5学习笔记2-最简单的页面布局

来源:互联网 发布:hive sql create table 编辑:程序博客网 时间:2024/06/04 18:01
<style type="text/css">
header, nav, article,footer{
    border:solid 1px#666;
    padding:10px;
    margin:6px;
}
header { width:500px }
nav {
    float:left;
    width:60px;
    height:100px
}
article {
    float:left;
    width:406px;
    height:100px
}
footer {
    clear:both;
    width:500px
}
</style>
</head>
<body>
<header>导航</header>
<nav>菜单</nav>
<article>内容</article>
<footer>底部说明</footer>
0 0