唔。您不能调整客户端窗口的大小。
您可以做的一件事是避免左滚动将父 div 的宽度设置为1000px
<div id="parent" style="min-width:1000px;">
<div id="container" style="position:absolute; top:0px; left:50%;
margin-left:-500px; width:1000px;"></div>
</div>
注意:
您可能需要将 html 和 body 标签的宽度设置为min-width=100%
更新:
<html style="min-width: 100%; background-color:Gray;">
<body style="min-width: 100%; background-color:White;">
<div id="parent" style="min-width: 1000px; position:relative;">
<div id="container" style="position: absolute; top: 0px; left: 50%; margin-left: -500px;
width: 1000px; border: 1px solid red; height: 10px;">
1 2 3 4 5
</div>
</div>
</body>
</html>
我错过position:relative
了描述。此代码正在运行。