博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用纯CSS实现三列DIV等高布局的方法
阅读量:5368 次
发布时间:2019-06-15

本文共 716 字,大约阅读时间需要 2 分钟。

散列等高
<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>

转载于:https://www.cnblogs.com/mainet/archive/2012/07/15/2592538.html

你可能感兴趣的文章
【iOS开发系列】cell切割线置顶
查看>>
android线程控制UI更新(Handler 、post()、postDelayed()、postAtTime)
查看>>
直方图均衡化和规定化
查看>>
Linux3.5内核以后的路由下一跳缓存
查看>>
真正可用的安卓webview html图片上传限制突破处理(拍照+相册都可以用)
查看>>
jquery点击图片选中特效
查看>>
sizeof 关键字!
查看>>
(转)eclipse 启动参数介绍(如添加插件时,如果不显示,则使用eclipse -clean启动)...
查看>>
linux 信号类型
查看>>
Net Framework 中托管代码与非托管代码的区别
查看>>
【深度学习篇】--神经网络中的池化层和CNN架构模型
查看>>
格式化
查看>>
Vue音乐项目笔记(一)
查看>>
持有silver fern Practical experience Visa在NZ生娃享受公共基金的政府网页
查看>>
LightOj 1074 Extended Traffic (spfa+负权环)
查看>>
ZooKeeper 03 - ZooKeeper集群的脑裂问题 (Split Brain问题)
查看>>
linux下的两级路由
查看>>
JDE 增加合计列
查看>>
python学习
查看>>
jquery 轮播图
查看>>