Float 两列布局示例

 

最终样式如下:

网页代码如下:

View Code
<body>
    <header>
        Header
    </header>
    <div id="wrapper">
        <div id="sidebar">
            SideBar
        </div>
        <div id="main">
            Main
        </div>
    </div>
    <footer>Footer</footer>
</body>

CSS样式如下:

View Code
<style type="text/css">
        body {
            margin: 0;
            padding: 0;
            font-family:Arial;
            text-align:center;
            color:#fff;
        }

        header {
            max-width: 980px;
            height: 100px;
            line-height:100px;
            background: #333;
            margin: 0 auto;
        }

        #wrapper {
            width: 980px;
            height:500px;
            line-height:500px;
            background: #555;
            margin: 0 auto;
        }

        #sidebar {
            width: 250px;
            min-height:500px;
            background: #f60;
            float:left;
        }

        #main {
            min-height:500px;
            margin-left: 250px;
            background: #e90;
        }
        footer {
                width:980px;
                height:50px;
                line-height:50px;
                margin:0 auto;
                background:#333;
                clear:both;
        }
    </style>

实现步骤:

  1. header margin居中并指定宽高
  2. wrapper 居中并指定宽度
  3. wrapper包含两个block
  4. Sidebar block指定宽度,float:left
  5. Main block margin-left:(Sidebar宽度 )
  6. footer 居中并指定宽度
  7. footer clear:both
posted @ 2013-03-09 12:53  Sheldon Ge  阅读(343)  评论(1编辑  收藏  举报