<div style="width: 800px; height: 600px">
<div style="height: 100px">
top fixed-height row
</div>
<div style="???">
bottom stretching row (the height should be 500px in this case.)
</div>
</div>
在没有 javascript 的情况下创建两行布局的标准方法是什么,其中顶部是固定大小,底部是拉伸并适合其父 div?
我希望两行的样式都是独立的。我在这里找到了几个解决方案,但是如果我更改顶行的高度,则需要随之更改底行的样式(例如边距)。
我不需要支持旧浏览器。如果它是标准的,那就没问题了。
谢谢!