关于css布局中左侧固定右侧自适应的几种方法

第一种:float 单一层浮动法

例如:左侧固定成100px; 则核心代码 左侧:width:100px;float:left; 右侧 width:auto;margin-left:100px;

实例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>z-index</title>
<style type="text/css">
	*{margin:0;padding:0;}
	.container{height:200px;}
	.left{width:100px;border-right:none;height:50px;float:left;background-color:yellow;}
	.right{margin-left:100px;width:auto;height:100px;background-color:blue;}
</style>
</head>
<body>
    <div class="container">
    	<div class="left"></div>
    	<div class="right"></div>
    </div>
</body>
</html>

绝大浏览器是没有任何问题的,除了万恶的浏览器IE6,两层中间有缝隙 3px;


第二种 定位 ,在固定元素上加入绝对定位,自适应元素设置成margin-left:固定元素的宽度

 实例:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>z-index</title>
<style type="text/css">
	*{margin:0;padding:0;}
	.container{height:200px;}
	.left{width:100px;height:50px;background-color:blue;position:absolute;left:0;top:0;}
	.right{margin-left:100px;height:100px;background-color:yellow;}
</style>
</head>
<body>
    <div class="container">
    	<div class="left">left</div>
    	<div class="right">right</div>
    </div>
</body>
</html>

主流浏览器都是支持的 包括IE6,除了这些还可以进行扩展 例如: ,在两个元素加上border,就可以实现,如果采用第一种方法 IE7 是不支持 显示的效果会是这样

所以说 第二种还是不错的,不少大家都会误解有时候 在float和定位都可以实现的时候,到底要采用哪种方式,我觉得那要看你想要兼容哪种浏览器,主流的(非IE6)两种都很不错,但是IE中关于float的bug 太多,还是能不用 尽量不用 定位我还是没有发现什么bug


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值