码迷,mamicode.com
首页 > Web开发 > 详细

css布局之左右固定宽度中间自适应

时间:2014-09-27 19:16:00      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   sp   div   

方法一:

左右布局用float,中间布局以左右布局的宽度为margin,这样就能自适应了。

左:float:left;width:300px;

右:float:right;width:300px;

中间:margin:0 300px;

 

方法二:

左右布局用position,中间布局以左右布局的宽度为margin,这样就能自适应了。

左:position:absolute; left:0; top:0width:300px;

右:position:absolute; top:0; right:0;width:300px;

中间:margin:0 300px;

 

方法三:

bubuko.com,布布扣
<style>
.demo3{
    margin-top: 30px;
}
.demo3 .l,
.demo3 .r,
.demo3 .m{
    float: left;
}
.demo3 .l,
.demo3 .r,
.demo3 .in{
    height: 300px;
}

.demo3 .m{
    width: 100%;
}
.demo3 .in{
    margin: 0 300px;
    background:#fcc;
}
.demo3 .l{
    width: 300px;
    margin-left: -100%;
    background:#9CF;
}
.demo3 .r{
    width: 300px;
    margin-left: -300px;
    background:#ccc;
}
</style>
<div class="demo3">
     <div class="m">
         <div class="in"></div>
     </div>
    <div class="l"></div>
     <div class="r"></div>
</div>
View Code

 

css布局之左右固定宽度中间自适应

标签:style   blog   http   color   io   os   ar   sp   div   

原文地址:http://www.cnblogs.com/jellyAndjammy/p/3996976.html

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