HTML5教程

前端_nav左布局

本文主要是介绍前端_nav左布局,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

预览

源码

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
      #header{
          background-color:skyblue;
          color:white;
          text-align:center;
          padding:5px;
      }
      #nav {
          line-height:30px;
          background-color:#eeeeee;
          height:300px;
          width:150px;
          float:left;
          padding:5px;
      }
      #section {
          width:350px;
          float:left;
          padding:10px;
      }
      #footer {
          background-color:skyblue;
          color:white;
          clear:both;
          text-align:center;
          padding:5px;
      }
  </style>
</head>
<body>

<div id="header">
  <h1>顶部</h1>
</div>

<div id="nav">
  <h1>左侧菜单</h1>
</div>
<div id="section">
  <h1>右侧内容</h1>
</div>
<div id="footer">底部</div>

</body>
</html>
这篇关于前端_nav左布局的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!