css左右上下布局

左边div固定宽度,右边div宽度自适应;上边div高度固定,下面div高度自适应;效果如下:



left宽度固定150px;右边宽度自适应浏览器。right-top高度100px,right-bottom高度自适应浏览器。代码如下:

<!DOCTYPE html>
<html>
	<head>
		<meta charset="en">
		<style>
		    html,body{width: 100%;height: 100%;padding: 0;margin:0;}
			#content{height: 100%;width: 100%;display: table;}
			.left{background-color: #99B898;width: 150px;height:100%;position: relative;top:0;left: 0;display: table-cell;}
			.right{position: relative;display: table-cell;}
			.right-top{background-color: #FECEAB;height: 100px;position: absolute;top:0;left: 0;width: 100%}
			.right-bottom{position: absolute;top:100px;left: 0;bottom:0;width: 100%;background-color: #FF847C}
		</style>
	</head>
	<body>
		<div id="content">
			<div class="left">left</div>
			<div class="right">
				<div class="right-top">right-top</div>
				<div class="right-bottom">right-bottom</div>
			</div>
		</div>
	</body>
</html>

上面代码在IE里,实现上下自适应的时候有问题;right-bottom高度没有自适应浏览器。用jquery处理了一下:

$(".right-bottom").height($("#content").height()-$(".right-top").height())





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值