博客列表 >两种经典三列布局实训—2018年3月27日作业

两种经典三列布局实训—2018年3月27日作业

王科的博客
王科的博客原创
2018年04月02日 21:50:57546浏览

用双飞翼实现三列布局:

代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>双飞翼三列布局</title>
	<style type="text/css">
		.header,.footer{
			width: 100%;
			height:60px;
			background-color: lightgray;
		}
		.content{
			width: 1000px;
			height: 60px;
			background-color: gray;
			margin: auto;
			text-align: center;
			line-height: 60px;
		}
		.container{
			width: 1000px;
			margin:auto;
			border: 1px solid red;
			background-color: yellow;
			overflow: hidden;

		}
		.footer{
			clear: both;
		}
		.wrap{
			width: 100%;
			float:left;
			background-color: cyan;

		}
		.wrap .main{
			height: 600px;
			background-color: wheat;
			margin-left: 200px;
			margin-right: 200px;
		}
		.left{
			width: 200px;
			float:left;
			height: 600px;
			background-color: lightskyblue;
			margin-left: -100%;
		}
		.right{
			width: 200px;
			float: left;
			height: 600px;
			background-color: lightskyblue;
			margin-left: -200px;
		}
		

	</style>

</head>
<body>
	<div class="header">
		<div class="content">网站头部</div>
	</div>
	<div class="container">
		<div class="wrap">
			<div class="main">中部</div></div>
		<div class="left">左部</div>
		<div class="right">右部</div>
	</div>
	<div class="footer">
		<div class="content">网站底部</div>
	</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

用圣杯实现三列布局:

代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>双飞翼三列布局</title>
	<style type="text/css">
		.header,.footer{
			width: 100%;
			height:60px;
			background-color: lightgray;
		}
		.content{
			width: 1000px;
			height: 60px;
			background-color: gray;
			margin: auto;
			text-align: center;
			line-height: 60px;
		}
		.footer{
			clear: both;
		}
		.container{
			border: 1px solid red;
			width: 600px;
			margin: auto;
			padding: 0 200px;
			overflow: hidden;
			background-color: yellow;
		}
		.container .main{
			width: 100%;
			min-height: 650px;
			float: left;
			background-color: green;
		}
		.container .left{
			width: 200px;
			min-height: 650px;
			float: left;
			background-color: blue;
			margin-left: -100%;
			position: relative;
			left: -200px;
		}
		.container .right{
			width: 200px;
			min-height: 650px;
			float: left;
			background-color: blue;
			margin-left: -200px;
			position: relative;
			left: 200px;
		}

background-color: green;

	</style>

</head>
<body>
	<div class="header">
		<div class="content">网站头部</div>
	</div>
	<div class="container">
		<div class="main">中部</div>
		<div class="left">左部</div>
		<div class="right">右部</div>
	</div>
	<div class="footer">
		<div class="content">网站底部</div>
	</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

终结:

1,双飞翼是用margin-left与margin-right挤压实现三列布局。

2,圣杯是用padding后在用绝对定位让两个耳朵填充padding后实现三列布局。

3,两种方式都用到浮动,并且都用overflow:hidden让父元素包住子元素。

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议