Blogger Information
Blog 64
fans 2
comment 3
visits 75754
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
网站三列布局
清雨的博客
Original
797 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
	body{
		padding: 0;
		margin:0;
	}
		.top {
			width: 1000px;
			height: 60px;
			margin: auto;
			background-color: #847F7F;
		}
		.main {
			width: 1000px;
		    margin: auto;
			position: relative;
		}
		.main .left {
			position: absolute;
			width: 200px;
			height: 650px;
			top: 0;
			left: 0;
			background-color: #5E2020;
		}
		.main .right {
			position: absolute;
			width: 200px;
			height: 650px;
			top: 0;
			right: 0;
			background-color: #5E2020;
		}
		.main .content {
			height: 650px;
			margin-left: 200px;
			margin-right: 200px;
			background-color: #CEC857;
		}
		.footer {
			width: 1000px;
			height: 60px;
			margin: auto;
			background-color: #474646;
		}
	</style>
</head>
<body>
	<div class="top">
		
	</div>
	<div class="main">
		<div class="left"></div>
		<div class="content"></div>
		<div class="right"></div>
	</div>
	<div class="footer"></div>
</body>
</html>

运行实例 »

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


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