Blogger Information
Blog 4
fans 0
comment 0
visits 2433
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
经典三列布局之圣杯
A微信视频直播衡阳微生活的博客
Original
562 people have browsed it
实例
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>经典三列布局之圣杯总结</title>
<style>
div{ text-align:center;}
.header,.footer{ width:100%; height:60px; background:#999999; line-height:60px;}

.pagebody{ overflow:hidden; width:600px; margin:auto; padding:0 200px; background:#CCFF00}

.pagebody .main{ min-height:650px;background:#FF9966; float:left; width:100%; }

.pagebody .left,.pagebody .right{ float:left; width:200px; min-height:650px;}
.pagebody .left{ background:#00CC99; margin-left:-100%; position:relative; left:-200px;}
.pagebody .right{ background:#66FFFF;margin:0px 0px 0px -200px;position:relative; right:-200px;}
</style>
</head>

<body>

<div class="header">
	<div class="content">页头</div>
</div>

<div class="pagebody">
    <div class="main">中间</div>
	<div class="left">左边</div>
    <div class="right">右边</div>

</div>
<div class="footer">底部</div>
</body>
</html>

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

微信图片_20180328152139.jpg

Correction status:qualified

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!