<!DOCTYPE html>
<html><head><style>
html, body{
width: 99%; /* to prevent scroll bar when unnessery */
height: 100%;
}
div#main_container{
position: absolute;
top: 50%; margin-top: -200px;
left: 50%; margin-left: -400px;
width: 800px; height: 400px;
border: 1px solid black;
}
</style></head><body>
<div id='main_container'>
Some content
</div>
</body></html>
问题:如果我让浏览器的窗口比我的内容块小,我看不到块的顶部和左侧 - 滚动条看起来像我在内容的顶部\左侧的最大值,但没有顶部和右侧我的街区被看到了。
为什么会发生以及如何解决?
我在 3 个浏览器中进行了测试,所以这不是浏览器问题。