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

常见非固宽度布局

时间:2017-06-13 00:09:07      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:oat   back   dhx   blank   target   blog   style   title   float   

一、左边固定,右边自适应的布局
 
1. 左边左浮动,右边加个overflow:hidden;
   #lt{ float: left;width:200px; background: #ff0;}
   #rt{ overflow: hidden; background: #f0f;}
 
2. 左边左浮动,右边加个margin-left;
 
   #lt{ float: left; width:200px; background: #ff0;}
   #rt{ margin-left: 200px; background: #f0f;}
 
 
3. 左边绝对定位,右边加个margin-left;
 
   #lt{ position: absolute; top:0; left:0; width:200px; background: #ff0;}
   #rt{ margin-left: 200px; background: #f0f;}
 
 
4. 左右两边绝对定位,右边加个width,top,left,right
 
   #lt{ position: absolute; top:0 ; left:0 ;width:200px; background: #ff0;}
   #rt{ position: absolute; top:0 ; left:200px; width: 100% ; rigth:0;background: #f0f;}
 
 
效果图如下:
技术分享

二、右边固定,左边自适应的布局
 
1. 左边左浮动,margin-left负值,右边右浮动;
 
   #lt{float:left; width:100%;background: #00f;margin-right: -200px;}
   #rt{float: right; width: 200px;background: #ff0;}
 
 
2. 右边绝对定位,左边margin-right;
 
   #lt{margin-right:200px; background: #00f;}
   #rt{ position: absolute; right:0; top:0; width: 200px;background: #ff0;}
 
 
3. 左右两边绝对定位,左边加个width,top,left,right
 
   #lt{ position: absolute; top:0; left:0; rigth:0; width: 100% ; background: #f0f;}
   #rt{ position: absolute; top:0; left:200px; width:200px; background: #ff0;}
 
 
效果图如下:

技术分享

 
上面的方法在各浏览器的测试中,都能兼容!

常见非固宽度布局

标签:oat   back   dhx   blank   target   blog   style   title   float   

原文地址:http://www.cnblogs.com/gulinsai/p/6995182.html

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