我在另一个 div 的下方设置了一个绝对位置 div。当我最大化或最小化浏览器按 ctrl +/- 时,我的绝对位置 div 不会保持原来的位置。请有人能指出我在这里可能做错了什么吗?非常感谢。这是我的代码:
<html>
<head>
<title>Test Page</title>
<style type="text/css">
body
{
margin: 0px;
padding: 0px;
}
#header
{
width: 980px;
height:80px;
background: #006666;
margin: 0 auto;
}
#content
{
color: white;
padding-top: 30px;
margin-left: 200px;
}
#menu
{
position: absolute;
top:50px;
left:222px;
width: 100px;
height: 20px;
background: red;
}
</style>
</head>
<body>
<div id="header">
<div id="content">Uttara.hr</div>
<div id="menu"></div>
</div>
</body>
</html>