Blogger Information
Blog 16
fans 1
comment 0
visits 9919
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3.27
烟火的博客
Original
665 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>4.经典的三列圣杯布局</title>
	<style type="text/css">
	.header, .footer {
		width: 100%;
		height: 60px;
		background-color: lightskyblue;
	}

	.footer {
		clear: both;
	}

	.content {
		width: 1000px;
		margin: auto;
		line-height: 60px;
		height: 100%;
		background-color: gray;
		text-align: center;
	}

	.container {
		width: 600px;
		margin:auto;
		background-color: yellow;
		overflow: hidden;  
		padding:0 200px;
	}

	.container .main {
		/*先设置行高暂时填充*/
		min-height: 650px;
		/*设置100%的宽度,避免被挤*/
		width: 100%;
		float:left;
		background-color: lightgreen; 
	}

	.container .left {
		width: 200px;
		/*最小高度,设置为行高一致*/
		min-height: 650px;
		float:left;
		margin-left: -100%;

		/*设置相对定位*/
		position: relative;
		right: 200px;
		background-color: red; 

	}

	.container .right {
		width: 200px;
		min-height: 650px;
		float:left;
		margin-left:-200px;
		position: relative;
		right:-200px;
		background-color: blue;
	}
	</style>
</head>
<body>
<!-- Html的DOM结构 -->
<!-- 头部 -->
<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>

运行实例 »

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


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!