我使用引导程序作为我的 CSS 框架。现在我在左侧 div 中有一些动态内容,在右侧 div 中有一些静态内容。我想根据左侧 div 的高度自动更改右侧 div 的高度。那可能吗?
<div class="container-fluid">
<div class="row-fluid">
<div class="span5 offset1">
<div class="well">
Dynamic Content
</div>
</div>
<div class="span5">
<div class="well" style="height: 330px; overflow-x: hidden; overflow-y: scroll;">
Static Content
</div>
</div>
</div>