css - 收缩元素而不是整页

时间:2018-01-03 12:43:17

标签: html css scrollbars

我有一个包含2个div的页面。当我减小浏览器窗口的高度时,我希望第一个div缩小(并且滚动条显示在它上面),而第二个div应该保持它的高度。

是否可以使用纯CSS实现此逻辑?

<div class="shrinkit">
  ..many lines of text..
</div>
<div class="noscroll">
  ..many lines of text..
</div>
<style>
.shrinkit {
  background-color: blue;
}
.noscroll {
  background-color: green;
}
</style>

1 个答案:

答案 0 :(得分:0)

只需给第一个div height:auto;,然后给第二个div,给出你想要的高度,例如height:200px