码迷,mamicode.com
首页 > 其他好文 > 详细

浮动布局

时间:2017-09-04 21:26:49      阅读:118      评论:0      收藏:0      [点我收藏+]

标签:play   col   tle   bsp   inline   nav   ext   ade   header   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>浮动</title>
        <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
            header{
                height: 150px;
                background: yellow;
            }
            nav{
                height: 30px;
                background: green;
            }
            .main{
                background: red;
                /*height: 500px;*/
                margin: 0 auto;
                overflow: hidden;
            }
            /*两列/三列布局*/
            .left{
                width: 200px;
                height: 300px;
                background: blue;
                /*display: inline-block;*/
                float:left; /*脱离文档流 的布局方式*/
            }
            .right{
                width: 800px;
                height: 500px;
                background: pink;
                float: left;
                /*display: inline-block;
                vertical-align: top;*/
            }
            /*.a{
                width: 200px;
                height: 300px;
                background: blue;
                float:right;
            }*/
            .main{
                width: 1000px;
            }
            footer{
                height: 100px;
                background: gold;
            }
            /*多行多列布局*/
            .box{
                width: 240px;
                height: 100px;
                border: 1px black solid;
                float: left;
                margin: 10px;
                /*box-sizing: border-box;*/
            }
        </style>
    </head>
    <body>
        <header></header>
        <nav></nav>
        <div class="main">
            <div class="left"></div>
            <div class="right">
                <div class="content">
                    <div class="box"></div>
                    <div class="box"></div>
                    <div class="box"></div>
                    <div class="box"></div>
                    <div class="box"></div>
                    <div class="box"></div>
                </div>
            </div>
        </div>
        <footer></footer>
    </body>
</html>

 

浮动布局

标签:play   col   tle   bsp   inline   nav   ext   ade   header   

原文地址:http://www.cnblogs.com/lhl66/p/7475557.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!