用纯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>
posted @ 2012-07-15 17:45  脉凌网络  阅读(542)  评论(1编辑  收藏  举报