首页 > 网站 > WEB开发 > 正文

纯CSS实现侧边栏/分栏高度自动相等

2024-04-27 15:19:34
字体:
来源:转载
供稿:网友
#content{overflow:hidden;}.left{width:200px; margin-bottom:-3000px; padding-bottom:3000px; background:#cad5eb; float:left;}.right{width:400px; margin-bottom:-3000px; padding-bottom:3000px; background:#f0f3f9; float:right;}.center{margin:0 410px 0 210px; background:#ffe6b8; height:600px;}<div id="content">    <div class="left">左边,无高度属性,自适应于最高一栏的高度</div>    <div class="right">右边,无高度属性,自适应于最高一栏的高度</div>    <div class="center">中间,高度600像素,左右两栏的高度与之自适应</div></div>说明:核心CSS代码部分的3000像素是个可变值,如果您的分栏高度不可能高度超过2000像素,您就可以设为2000像素,如果会超过3000像素,那么您要修改值为4000像素或是更高。父标签的overflow:hidden属性是必须的,否则会显示溢出的内容。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表