css中如何实现左边的高度随着右边改变而改变

Posted G善源

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css中如何实现左边的高度随着右边改变而改变相关的知识,希望对你有一定的参考价值。

div结构:

<div class="container">
<div class="left"></div>
<div class="right"></div>
</div>

css:

.container {width:960px; height:100%; overflow:hidden; margin:0 auto;}
.left {height:100%; width:200px; overflow:hidden; padding-bottom:9999px; margin-bottom:-9999px; float:left; display:inline;}
.right {width:750px; float:right; height:auto;}

核心作用的是:

height:100%; overflow:hidden; padding-bottom:9999px; margin-bottom:-9999px;

 

以上是关于css中如何实现左边的高度随着右边改变而改变的主要内容,如果未能解决你的问题,请参考以下文章

css能不能实现左边div固定宽度,右边div自适应撑满剩下的宽度

布局(左边的div随着右边div的高度变化而变化)

html页面有两个上下排列的div,头部div的高度为固定的,底部div的高度是随着浏览器窗口高度改变而改变。

纯div css实现的左右两个等高div

css 两列布局 右边固定 左边可伸缩 但是有最小宽度 如何实现?

css能不能实现左边div固定宽度,右边div自适应撑满剩下的宽度