我在 Android 上使用 Chrome 时遇到了这个问题,它可以在同一设备上的其他浏览器上运行:
问题是当我将高度设置为 100% 时,嵌套的 DIV 没有填充其父级(其高度为 100vh)。
<style>
#a{width:100%;height: 100vh;background-color: red;}
#a .inner {width: 100%;height: 100%;min-height: 100%; background-color: green;}
</style>
<div id="a">
<div class="inner">The GREEN must fill the screen</div>
</div>
我在 Chrome 版本上进行了测试:26.0.1410.58 和 30.0.0.0。
:(