圣杯布局

圣杯布局

实现目标:

  1. 三栏布局
  2. 浏览器页面宽度变化时,左右内容不变,中间内容自适应

实现思路:

  1. 整体浮动,中间内容在最前面,方便渲染,宽度width:100% = 父元素宽度
  2. 左右宽度恒定
  3. 将左右移动到自己应该去的位置,position/-margin等方法实现
  4. 父元素设置min-width

实现效果:

圣杯布局

实现代码:

<!DOCTYPE html>
	<html lang="en">
	<head>
	    <meta charset="UTF-8">
	    <meta name="viewport" content="width=device-width, initial-scale=1.0">
	    <title>圣杯布局</title>
	</head>
	<style>
	    *{
	        margin: 0;
	        padding: 0;
	    }
	    .header,.footer{
	        width: 100%;
	        height: 100px;
	        background: silver;
	        text-align: center;
	        line-height: 100px;
	        font-weight: bold;
	        font-size: 40px;
	    }    
	    .box::after{
	        content: ".";
	        clear: both;
	        display: block;
	        visibility: hidden;
	        height: 0;
	    }
	    .box{
	        min-width: 100px;
	        margin: 0 auto;
	    }
	    .box>div{
	        float: left;
	        text-align: center;
	        font-size: 30px;
	    }
	    .cen{
	        width: 100%;
	        height: 500px;
	        line-height: 500px;
	        padding: 0 300px 0 100px;
	        background: purple;
	        box-sizing: border-box;
	    }
	    .lf{
	        line-height: 400px;
	        width: 100px;
	        margin-left: -100%;
	        background: gold;
	        height: 400px;
	    }
	    .rf{
	        line-height: 300px;
	        width: 300px;
	        margin-left: -300px;
	        /* margin-right: -300%; */
	        background: orange;
	        height: 300px;
	    }
	</style>
	<body>
	    <div class="header">header</div>
	    <div class="box">
	        <div class="cen">
	            center
	        </div>
	        <div class="lf">
	            left
	        </div>
	        <div class="rf">
	            right
	        </div>
	    </div>
	    <div class="footer">footer</div>
	</body>
	</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值