私は次の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
dintも指定すると役に立ちます。
ここで非常にひどく助けを探しています。
#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;
}