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

中间固定两侧自适应三栏布局

时间:2015-10-01 16:26:09      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

上一种布局“中间自适应两侧固定” 用了三种方法去解决,这一种是不常见的布局格式,来看下解决方法,先看简单的解决

第一种:绝对定位

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
    html,body{ height: 100%; padding: 0; margin:0;}
    div{ height: 100%;}
    .main{ width: 500px; background: yellow; position: absolute; top: 0; left: 50%; margin-left: -250px; z-index: 5;}
    .left,.right{ position: absolute; width: 50%; left: 0; z-index: 2; background: black;}
    .right{ position: absolute; width: 50%; right: 0; z-index: 2; background: black;}
    </style>
</head>
<body>
    <div class="left"></div>
    <div class="main"></div>
    <div class="right"></div>
</body>
</html>

很easy解决

第二种:浮动

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        html,body{ height: 100%; padding: 0; margin: 0;}
        div{ height: 100%;}
        .left,.right{ width: 50%; float: left; margin-left: -250px; background: blue;}
        .main{ width: 500px; float: left; background: yellow;}
        .right .inner,.left .inner{ margin-left: 250px; background: #000; }
    </style>
</head>
<body>
    <div class="left">
        <div class="inner">this is left sidebar content</div>
    </div>
    <div class="main">
    </div>
    <div class="right">  ·`````````
        <div class="inner">this is right siderbar content</div>
    </div>
</body>
</html>

中间main的 宽度固定后,然后让其做浮动 ,关键地是在左右边栏设置地方,这种方法是将其都进行50%的宽度设置,并加上中负的左边距,再在左右边栏的内层div.inner将其要显示的地方拉回来,就ok了

第三种:css3的flex

中间固定两侧自适应三栏布局

标签:

原文地址:http://www.cnblogs.com/yangjie-space/p/4851128.html

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