我有以下 div 结构
<div id="wrapper">
<div id="header">
<div id="storeFinder">
/* html goes here */
</div>
</div>
</div>
现在当我从浏览器放大或缩小时,"storeFinder"
向右/向左移动......
我在网上搜索过,发现需要一个包装器,"storeFinder"
这样它就不会随着移动而移动,<body>
并且指定min-width
也可以解决问题。
就我而言,我已经有一个wrapper
div 并指定了min-width
也可以帮助我。
在这里非常糟糕地寻求帮助。
#wrapper {
background: white;
background-position: 50% 0px;
width: 984px;
margin: 0px auto 0 auto;
text-align: center;
}
#header {
width: 960px;
height: 60px;
margin: 0 5px 2px 5px;
text-align: left;
background: white;
display: block;
position: relative;
}
#storefinderdropdown {
position: absolute;
top: 8px;
float: none;
width: 270px;
height: 43px;
border: 5px solid #F1F1EF;
background: #F1F1EF;
z-index: 10;
margin: 20px 0 0 342px;
font-size: 10px;
font-weight: bold;
text-indent: 3px;
padding: 0;
}