首页 > 开发 > CSS > 正文

CSS网页制作实例:三列等高DIV的网页布局

2024-07-11 09:01:45
字体:
来源:转载
供稿:网友

武林网(www.vevb.com)文章简介:用纯CSS实现三列DIV等高布局的方法。

散列等高

<body>
<div id="wrap">
<div id="left">
<p style="height:500px">style="height:500px"</p>
</div>
<div id="center">
<p style="height:600px">style="height:600px"</p>
</div>
<div id="right">
<p style="height:700px">style="height:700px"</p>
</div>
</div>
</body>

CSS

<style type="text/css">
* {
margin:0;
padding:0;
}
#wrap {
overflow:hidden;
width:1000px;
margin:0 auto;
}
#left, #center, #right {
margin-bottom:-10000px;
padding-bottom:10000px;
}
#left {
float:left;
width:250px;
background:#777;
}
#center {
float:left;
width:500px;
background:#888;
}
#right {
float:right;
width:250px;
background:#999;
}
p {color:#FFF;text-align:center}
</style>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表