<div id="outer" style="min-width: 2000px; min-height: 1000px; background: #3e3e3e;">
<div id="inner" style="left: 1%; top: 45px; width: 50%; height: auto; position: absolute; z-index: 1;">
<div style="background: #efffef; position: absolute; height: 400px; right: 0px; left: 0px;"></div>
</div>
</div>
我希望内部 div 占用给它的父 div (外部)的50% 的空间。取而代之的是获得了 viewport 可用空间的50% ,这意味着随着浏览器/viewport 的缩小,它也会缩小。
考虑到外部 div 的 min-width
为 2000px
,我希望内部 div 至少为 1000px
宽。